Initial commit
This commit is contained in:
6
node_modules/@maplibre/mlt/dist/vector/constant/int32ConstVector.d.ts
generated
vendored
Normal file
6
node_modules/@maplibre/mlt/dist/vector/constant/int32ConstVector.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import type BitVector from "../flat/bitVector";
|
||||
import Vector from "../vector";
|
||||
export declare class Int32ConstVector extends Vector<Int32Array | Uint32Array, number> {
|
||||
constructor(name: string, value: number, sizeOrNullabilityBuffer: number | BitVector, isSigned: boolean);
|
||||
protected getValueFromBuffer(_index: number): number;
|
||||
}
|
||||
10
node_modules/@maplibre/mlt/dist/vector/constant/int32ConstVector.js
generated
vendored
Normal file
10
node_modules/@maplibre/mlt/dist/vector/constant/int32ConstVector.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import Vector from "../vector";
|
||||
export class Int32ConstVector extends Vector {
|
||||
constructor(name, value, sizeOrNullabilityBuffer, isSigned) {
|
||||
super(name, isSigned ? Int32Array.of(value) : Uint32Array.of(value), sizeOrNullabilityBuffer);
|
||||
}
|
||||
getValueFromBuffer(_index) {
|
||||
return this.dataBuffer[0];
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=int32ConstVector.js.map
|
||||
1
node_modules/@maplibre/mlt/dist/vector/constant/int32ConstVector.js.map
generated
vendored
Normal file
1
node_modules/@maplibre/mlt/dist/vector/constant/int32ConstVector.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"int32ConstVector.js","sourceRoot":"","sources":["../../../src/vector/constant/int32ConstVector.ts"],"names":[],"mappings":"AACA,OAAO,MAAM,MAAM,WAAW,CAAC;AAE/B,MAAM,OAAO,gBAAiB,SAAQ,MAAwC;IAC1E,YAAmB,IAAY,EAAE,KAAa,EAAE,uBAA2C,EAAE,QAAiB;QAC1G,KAAK,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,UAAU,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,uBAAuB,CAAC,CAAC;IAClG,CAAC;IAES,kBAAkB,CAAC,MAAc;QACvC,OAAO,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;IAC9B,CAAC;CACJ","sourcesContent":["import type BitVector from \"../flat/bitVector\";\nimport Vector from \"../vector\";\n\nexport class Int32ConstVector extends Vector<Int32Array | Uint32Array, number> {\n public constructor(name: string, value: number, sizeOrNullabilityBuffer: number | BitVector, isSigned: boolean) {\n super(name, isSigned ? Int32Array.of(value) : Uint32Array.of(value), sizeOrNullabilityBuffer);\n }\n\n protected getValueFromBuffer(_index: number): number {\n return this.dataBuffer[0];\n }\n}\n"]}
|
||||
6
node_modules/@maplibre/mlt/dist/vector/constant/int64ConstVector.d.ts
generated
vendored
Normal file
6
node_modules/@maplibre/mlt/dist/vector/constant/int64ConstVector.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import type BitVector from "../flat/bitVector";
|
||||
import Vector from "../vector";
|
||||
export declare class Int64ConstVector extends Vector<BigInt64Array | BigUint64Array, bigint> {
|
||||
constructor(name: string, value: bigint, sizeOrNullabilityBuffer: number | BitVector, isSigned: boolean);
|
||||
protected getValueFromBuffer(_index: number): bigint;
|
||||
}
|
||||
10
node_modules/@maplibre/mlt/dist/vector/constant/int64ConstVector.js
generated
vendored
Normal file
10
node_modules/@maplibre/mlt/dist/vector/constant/int64ConstVector.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import Vector from "../vector";
|
||||
export class Int64ConstVector extends Vector {
|
||||
constructor(name, value, sizeOrNullabilityBuffer, isSigned) {
|
||||
super(name, isSigned ? BigInt64Array.of(value) : BigUint64Array.of(value), sizeOrNullabilityBuffer);
|
||||
}
|
||||
getValueFromBuffer(_index) {
|
||||
return this.dataBuffer[0];
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=int64ConstVector.js.map
|
||||
1
node_modules/@maplibre/mlt/dist/vector/constant/int64ConstVector.js.map
generated
vendored
Normal file
1
node_modules/@maplibre/mlt/dist/vector/constant/int64ConstVector.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"int64ConstVector.js","sourceRoot":"","sources":["../../../src/vector/constant/int64ConstVector.ts"],"names":[],"mappings":"AACA,OAAO,MAAM,MAAM,WAAW,CAAC;AAE/B,MAAM,OAAO,gBAAiB,SAAQ,MAA8C;IAChF,YAAmB,IAAY,EAAE,KAAa,EAAE,uBAA2C,EAAE,QAAiB;QAC1G,KAAK,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,uBAAuB,CAAC,CAAC;IACxG,CAAC;IAES,kBAAkB,CAAC,MAAc;QACvC,OAAO,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;IAC9B,CAAC;CACJ","sourcesContent":["import type BitVector from \"../flat/bitVector\";\nimport Vector from \"../vector\";\n\nexport class Int64ConstVector extends Vector<BigInt64Array | BigUint64Array, bigint> {\n public constructor(name: string, value: bigint, sizeOrNullabilityBuffer: number | BitVector, isSigned: boolean) {\n super(name, isSigned ? BigInt64Array.of(value) : BigUint64Array.of(value), sizeOrNullabilityBuffer);\n }\n\n protected getValueFromBuffer(_index: number): bigint {\n return this.dataBuffer[0];\n }\n}\n"]}
|
||||
Reference in New Issue
Block a user