iota_

package
v0.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 22, 2019 License: MIT Imports: 1 Imported by: 0

Documentation

Overview

iota についてのサンプルが配置されているパッケージです。

REFERENCES:: http://bit.ly/2Re6Py5

Index

Constants

View Source
const (
	FirstValue int = iota // 最初の値は 0 からスタート
	SecondValue
	ThirdValue
)

Variables

This section is empty.

Functions

func Iota01

func Iota01() error

Types

type ByteSize

type ByteSize int64
const (
	KB ByteSize = 1 << (10 * iota)
	MB
	GB
	TB
)

noinspection GoUnusedConst

type Weekday

type Weekday int
const (
	Sunday Weekday = iota + 1 // iota は 0

	Monday  // iota は 2, (2 + 1) で 3 となる
	Tuesday // iota は 3, (3 + 1) で 4 となる
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL