├── .gitignore ├── LICENSE ├── README.md ├── atoi62.go ├── atoi62_test.go ├── atoi_x.go ├── atoi_x_test.go ├── bool.go ├── bools.go ├── bools_test.go ├── export_test.go ├── float32.go ├── float32s.go ├── float64.go ├── float64s.go ├── go.mod ├── go.sum ├── initialize.go ├── initialize_test.go ├── int.go ├── int16.go ├── int16s.go ├── int32.go ├── int32s.go ├── int64.go ├── int64s.go ├── int8.go ├── int8s.go ├── interface.go ├── interface_test.go ├── interfaces.go ├── ints.go ├── ints_test.go ├── itoa62.go ├── itoa62_test.go ├── itoa_x.go ├── itoa_x_test.go ├── string.go ├── strings.go ├── strings_test.go ├── test └── time │ └── time.go ├── typconv.go ├── typconv_test.go ├── uint.go ├── uint16.go ├── uint16s.go ├── uint32.go ├── uint32s.go ├── uint64.go ├── uint64s.go ├── uint8.go ├── uint8s.go ├── uints.go ├── utils.go ├── value.go └── value_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/README.md -------------------------------------------------------------------------------- /atoi62.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/atoi62.go -------------------------------------------------------------------------------- /atoi62_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/atoi62_test.go -------------------------------------------------------------------------------- /atoi_x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/atoi_x.go -------------------------------------------------------------------------------- /atoi_x_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/atoi_x_test.go -------------------------------------------------------------------------------- /bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/bool.go -------------------------------------------------------------------------------- /bools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/bools.go -------------------------------------------------------------------------------- /bools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/bools_test.go -------------------------------------------------------------------------------- /export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/export_test.go -------------------------------------------------------------------------------- /float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/float32.go -------------------------------------------------------------------------------- /float32s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/float32s.go -------------------------------------------------------------------------------- /float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/float64.go -------------------------------------------------------------------------------- /float64s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/float64s.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/go.sum -------------------------------------------------------------------------------- /initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/initialize.go -------------------------------------------------------------------------------- /initialize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/initialize_test.go -------------------------------------------------------------------------------- /int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int.go -------------------------------------------------------------------------------- /int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int16.go -------------------------------------------------------------------------------- /int16s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int16s.go -------------------------------------------------------------------------------- /int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int32.go -------------------------------------------------------------------------------- /int32s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int32s.go -------------------------------------------------------------------------------- /int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int64.go -------------------------------------------------------------------------------- /int64s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int64s.go -------------------------------------------------------------------------------- /int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int8.go -------------------------------------------------------------------------------- /int8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/int8s.go -------------------------------------------------------------------------------- /interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/interface.go -------------------------------------------------------------------------------- /interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/interface_test.go -------------------------------------------------------------------------------- /interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/interfaces.go -------------------------------------------------------------------------------- /ints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/ints.go -------------------------------------------------------------------------------- /ints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/ints_test.go -------------------------------------------------------------------------------- /itoa62.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/itoa62.go -------------------------------------------------------------------------------- /itoa62_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/itoa62_test.go -------------------------------------------------------------------------------- /itoa_x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/itoa_x.go -------------------------------------------------------------------------------- /itoa_x_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/itoa_x_test.go -------------------------------------------------------------------------------- /string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/string.go -------------------------------------------------------------------------------- /strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/strings.go -------------------------------------------------------------------------------- /strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/strings_test.go -------------------------------------------------------------------------------- /test/time/time.go: -------------------------------------------------------------------------------- 1 | package time 2 | 3 | type Time struct { 4 | S int 5 | } 6 | -------------------------------------------------------------------------------- /typconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/typconv.go -------------------------------------------------------------------------------- /typconv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/typconv_test.go -------------------------------------------------------------------------------- /uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint.go -------------------------------------------------------------------------------- /uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint16.go -------------------------------------------------------------------------------- /uint16s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint16s.go -------------------------------------------------------------------------------- /uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint32.go -------------------------------------------------------------------------------- /uint32s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint32s.go -------------------------------------------------------------------------------- /uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint64.go -------------------------------------------------------------------------------- /uint64s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint64s.go -------------------------------------------------------------------------------- /uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint8.go -------------------------------------------------------------------------------- /uint8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uint8s.go -------------------------------------------------------------------------------- /uints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/uints.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/utils.go -------------------------------------------------------------------------------- /value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/value.go -------------------------------------------------------------------------------- /value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/ameda/HEAD/value_test.go --------------------------------------------------------------------------------