github.com/sandwich-go/boost@v1.3.29/xcontainer/sarray/sarray.go (about)

     1  package sarray
     2  
     3  // go get github.com/sandwich-go/gotemplate/...
     4  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Int(int)"
     5  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Int8(int8)"
     6  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Int16(int16)"
     7  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Int32(int32)"
     8  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Int64(int64)"
     9  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Uint(uint)"
    10  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Uint8(uint8)"
    11  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Uint16(uint16)"
    12  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Uint32(uint32)"
    13  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Uint64(uint64)"
    14  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "String(string)"
    15  //go:generate gotemplate -outfmt gen_%v "../templates/sarray" "Any(interface{})"