package
1.1.2-pre
Repository: https://github.com/mashiroc/begonia.git
Documentation: pkg.go.dev

# Functions

FromValue 将一个 reflect.Value 的数组转化为 map 该函数会将数组中每一个值转化为 "out"+i - interface{} i的范围为 1 ~ ∞.
ToInterfaces 将一个 map 转化为一个 interface{} 该函数会抽取map中key为 “out” + i 的value,组装为数组。i的范围为 1 ~ ∞ 根据最终的数组长度来做不同的返回: >1 返回数组 =1 返回数组第一个值 =0 返回 true.
ToValue 将一个 map 转化为一个 reflect.Value 的数组 该函数会抽取map中key为 “in” + i 的value,组装为数组。i的范围为 1 ~ ∞.