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

     1  package syncmap
     2  
     3  // go get github.com/sandwich-go/gotemplate/...
     4  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntInt(int,int)"
     5  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntInt8(int,int8)"
     6  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntInt16(int,int16)"
     7  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntInt32(int,int32)"
     8  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntInt64(int,int64)"
     9  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntUint(int,uint)"
    10  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntUint8(int,uint8)"
    11  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntUint16(int,uint16)"
    12  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntUint32(int,uint32)"
    13  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntUint64(int,uint64)"
    14  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntString(int,string)"
    15  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "IntAny(int,interface{})"
    16  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Int(int8,int)"
    17  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Int8(int8,int8)"
    18  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Int16(int8,int16)"
    19  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Int32(int8,int32)"
    20  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Int64(int8,int64)"
    21  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Uint(int8,uint)"
    22  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Uint8(int8,uint8)"
    23  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Uint16(int8,uint16)"
    24  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Uint32(int8,uint32)"
    25  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Uint64(int8,uint64)"
    26  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8String(int8,string)"
    27  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int8Any(int8,interface{})"
    28  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Int(int16,int)"
    29  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Int8(int16,int8)"
    30  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Int16(int16,int16)"
    31  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Int32(int16,int32)"
    32  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Int64(int16,int64)"
    33  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Uint(int16,uint)"
    34  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Uint8(int16,uint8)"
    35  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Uint16(int16,uint16)"
    36  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Uint32(int16,uint32)"
    37  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Uint64(int16,uint64)"
    38  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16String(int16,string)"
    39  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "Int16Any(int16,interface{})"
    40  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "AnyAny(interface{},interface{})"
    41  //go:generate gotemplate -outfmt gen_%v "../templates/syncmap" "StringAny(string,interface{})"