package
0.0.0-20211205205814-168ccc21e67c
Repository: https://github.com/ziutek/emgo.git
Documentation: pkg.go.dev
# Functions
WriteBool writes text representation of b to w using format specified by fmt: false / true for 't', 'v', 0 / 1 for 'd', 'x', 'X'.
WriteFloat writes text representation of f using format specified by fmt: 'b': -ddddp±ddd, 'e': -d.dddde±dd, prec sets the number of digits after decimal, 'f': -ddddd.dddd, prec sets the number of digits after decimal, 'g': shortest from 'e' or 'f', prec sets the number of significant digits.
WriteInt writes text representation of i to w using 2 <= base <= 36.
WriteInt32 works like WriteInt but is optimized for 32-bit numbers.
WriteInt64 works like WriteInt.