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
|
// Code generated by datatype_numeric.gen.go.tmpl. DO NOT EDIT.
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package arrow
type Int8Type struct{}
func (t *Int8Type) ID() Type { return INT8 }
func (t *Int8Type) Name() string { return "int8" }
func (t *Int8Type) String() string { return "int8" }
func (t *Int8Type) BitWidth() int { return 8 }
func (t *Int8Type) Bytes() int { return Int8SizeBytes }
func (t *Int8Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Int8Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Int8SizeBytes)}}
}
type Int16Type struct{}
func (t *Int16Type) ID() Type { return INT16 }
func (t *Int16Type) Name() string { return "int16" }
func (t *Int16Type) String() string { return "int16" }
func (t *Int16Type) BitWidth() int { return 16 }
func (t *Int16Type) Bytes() int { return Int16SizeBytes }
func (t *Int16Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Int16Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Int16SizeBytes)}}
}
type Int32Type struct{}
func (t *Int32Type) ID() Type { return INT32 }
func (t *Int32Type) Name() string { return "int32" }
func (t *Int32Type) String() string { return "int32" }
func (t *Int32Type) BitWidth() int { return 32 }
func (t *Int32Type) Bytes() int { return Int32SizeBytes }
func (t *Int32Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Int32Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Int32SizeBytes)}}
}
type Int64Type struct{}
func (t *Int64Type) ID() Type { return INT64 }
func (t *Int64Type) Name() string { return "int64" }
func (t *Int64Type) String() string { return "int64" }
func (t *Int64Type) BitWidth() int { return 64 }
func (t *Int64Type) Bytes() int { return Int64SizeBytes }
func (t *Int64Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Int64Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Int64SizeBytes)}}
}
type Uint8Type struct{}
func (t *Uint8Type) ID() Type { return UINT8 }
func (t *Uint8Type) Name() string { return "uint8" }
func (t *Uint8Type) String() string { return "uint8" }
func (t *Uint8Type) BitWidth() int { return 8 }
func (t *Uint8Type) Bytes() int { return Uint8SizeBytes }
func (t *Uint8Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Uint8Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Uint8SizeBytes)}}
}
type Uint16Type struct{}
func (t *Uint16Type) ID() Type { return UINT16 }
func (t *Uint16Type) Name() string { return "uint16" }
func (t *Uint16Type) String() string { return "uint16" }
func (t *Uint16Type) BitWidth() int { return 16 }
func (t *Uint16Type) Bytes() int { return Uint16SizeBytes }
func (t *Uint16Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Uint16Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Uint16SizeBytes)}}
}
type Uint32Type struct{}
func (t *Uint32Type) ID() Type { return UINT32 }
func (t *Uint32Type) Name() string { return "uint32" }
func (t *Uint32Type) String() string { return "uint32" }
func (t *Uint32Type) BitWidth() int { return 32 }
func (t *Uint32Type) Bytes() int { return Uint32SizeBytes }
func (t *Uint32Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Uint32Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Uint32SizeBytes)}}
}
type Uint64Type struct{}
func (t *Uint64Type) ID() Type { return UINT64 }
func (t *Uint64Type) Name() string { return "uint64" }
func (t *Uint64Type) String() string { return "uint64" }
func (t *Uint64Type) BitWidth() int { return 64 }
func (t *Uint64Type) Bytes() int { return Uint64SizeBytes }
func (t *Uint64Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Uint64Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Uint64SizeBytes)}}
}
type Float32Type struct{}
func (t *Float32Type) ID() Type { return FLOAT32 }
func (t *Float32Type) Name() string { return "float32" }
func (t *Float32Type) String() string { return "float32" }
func (t *Float32Type) BitWidth() int { return 32 }
func (t *Float32Type) Bytes() int { return Float32SizeBytes }
func (t *Float32Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Float32Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Float32SizeBytes)}}
}
type Float64Type struct{}
func (t *Float64Type) ID() Type { return FLOAT64 }
func (t *Float64Type) Name() string { return "float64" }
func (t *Float64Type) String() string { return "float64" }
func (t *Float64Type) BitWidth() int { return 64 }
func (t *Float64Type) Bytes() int { return Float64SizeBytes }
func (t *Float64Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Float64Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Float64SizeBytes)}}
}
type Date32Type struct{}
func (t *Date32Type) ID() Type { return DATE32 }
func (t *Date32Type) Name() string { return "date32" }
func (t *Date32Type) String() string { return "date32" }
func (t *Date32Type) BitWidth() int { return 32 }
func (t *Date32Type) Bytes() int { return Date32SizeBytes }
func (t *Date32Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Date32Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Date32SizeBytes)}}
}
type Date64Type struct{}
func (t *Date64Type) ID() Type { return DATE64 }
func (t *Date64Type) Name() string { return "date64" }
func (t *Date64Type) String() string { return "date64" }
func (t *Date64Type) BitWidth() int { return 64 }
func (t *Date64Type) Bytes() int { return Date64SizeBytes }
func (t *Date64Type) Fingerprint() string { return typeFingerprint(t) }
func (t *Date64Type) Layout() DataTypeLayout {
return DataTypeLayout{Buffers: []BufferSpec{
SpecBitmap(), SpecFixedWidth(Date64SizeBytes)}}
}
var (
PrimitiveTypes = struct {
Int8 DataType
Int16 DataType
Int32 DataType
Int64 DataType
Uint8 DataType
Uint16 DataType
Uint32 DataType
Uint64 DataType
Float32 DataType
Float64 DataType
Date32 DataType
Date64 DataType
}{
Int8: &Int8Type{},
Int16: &Int16Type{},
Int32: &Int32Type{},
Int64: &Int64Type{},
Uint8: &Uint8Type{},
Uint16: &Uint16Type{},
Uint32: &Uint32Type{},
Uint64: &Uint64Type{},
Float32: &Float32Type{},
Float64: &Float64Type{},
Date32: &Date32Type{},
Date64: &Date64Type{},
}
)
|