1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
package main
import (
"fmt"
"reflect"
"strings"
)
type TypeClass func(a reflect.Kind) bool
func isParameterized(a reflect.Kind) bool {
for _, v := range parameterizedKinds {
if v == a {
return true
}
}
return false
}
func isNotParameterized(a reflect.Kind) bool { return !isParameterized(a) }
func isRangeable(a reflect.Kind) bool {
for _, v := range rangeable {
if v == a {
return true
}
}
return false
}
func isSpecialized(a reflect.Kind) bool {
for _, v := range specialized {
if v == a {
return true
}
}
return false
}
func isNumber(a reflect.Kind) bool {
for _, v := range number {
if v == a {
return true
}
}
return false
}
func isSignedNumber(a reflect.Kind) bool {
for _, v := range signedNumber {
if v == a {
return true
}
}
return false
}
func isNonComplexNumber(a reflect.Kind) bool {
for _, v := range nonComplexNumber {
if v == a {
return true
}
}
return false
}
func isAddable(a reflect.Kind) bool {
if a == reflect.String {
return true
}
return isNumber(a)
}
func isComplex(a reflect.Kind) bool {
if a == reflect.Complex128 || a == reflect.Complex64 {
return true
}
return false
}
func panicsDiv0(a reflect.Kind) bool {
for _, v := range div0panics {
if v == a {
return true
}
}
return false
}
func isEq(a reflect.Kind) bool {
for _, v := range elEq {
if v == a {
return true
}
}
return false
}
func isOrd(a reflect.Kind) bool {
for _, v := range elOrd {
if v == a {
return true
}
}
return false
}
func isBoolRepr(a reflect.Kind) bool {
for _, v := range boolRepr {
if v == a {
return true
}
}
return false
}
func mathPkg(a reflect.Kind) string {
if a == reflect.Float64 {
return "math."
}
if a == reflect.Float32 {
return "math32."
}
if a == reflect.Complex64 || a == reflect.Complex128 {
return "cmplx."
}
return ""
}
func vecPkg(a reflect.Kind) string {
if a == reflect.Float64 {
return "vecf64."
}
if a == reflect.Float32 {
return "vecf32."
}
return ""
}
func getalias(name string) string {
if nice, ok := nameMaps[name]; ok {
return nice
}
return name
}
func interfaceName(name string) string {
switch name {
case "Square":
return "Squarer"
case "Cube":
return "Cuber"
case "Eq", "ElEq":
return "ElEqer"
case "Ne", "ElNe":
return "ElEqer"
default:
return name + "er"
}
}
func bitSizeOf(a reflect.Kind) string {
switch a {
case reflect.Int, reflect.Uint:
return "0"
case reflect.Int8, reflect.Uint8:
return "8"
case reflect.Int16, reflect.Uint16:
return "16"
case reflect.Int32, reflect.Uint32, reflect.Float32:
return "32"
case reflect.Int64, reflect.Uint64, reflect.Float64:
return "64"
}
return "UNKNOWN BIT SIZE"
}
func trueValue(a reflect.Kind) string {
switch a {
case reflect.String:
return `"true"`
case reflect.Bool:
return "true"
default:
return "1"
}
}
func falseValue(a reflect.Kind) string {
switch a {
case reflect.String:
return `"false"`
case reflect.Bool:
return "false"
default:
return "0"
}
}
func isFloat(a reflect.Kind) bool {
if a == reflect.Float32 || a == reflect.Float64 {
return true
}
return false
}
func isFloatCmplx(a reflect.Kind) bool {
if a == reflect.Float32 || a == reflect.Float64 || a == reflect.Complex64 || a == reflect.Complex128 {
return true
}
return false
}
func isntFloat(a reflect.Kind) bool { return !isFloat(a) }
func isntComplex(a reflect.Kind) bool { return !isComplex(a) }
func short(a reflect.Kind) string {
return shortNames[a]
}
func clean(a string) string {
if a == "unsafe.pointer" {
return "unsafe.Pointer"
}
return a
}
func unexport(a string) string {
return strings.ToLower(string(a[0])) + a[1:]
}
func strip(a string) string {
return strings.Replace(a, ".", "", -1)
}
func reflectKind(a reflect.Kind) string {
return strip(strings.Title(a.String()))
}
func asType(a reflect.Kind) string {
return clean(a.String())
}
func sliceOf(a reflect.Kind) string {
s := fmt.Sprintf("%ss()", strings.Title(a.String()))
return strip(clean(s))
}
func getOne(a reflect.Kind) string {
return fmt.Sprintf("Get%s", short(a))
}
func setOne(a reflect.Kind) string {
return fmt.Sprintf("Set%s", short(a))
}
func filter(a []reflect.Kind, is func(reflect.Kind) bool) (retVal []reflect.Kind) {
for _, k := range a {
if is(k) {
retVal = append(retVal, k)
}
}
return
}
|