Skip to content

Commit 21c15c9

Browse files
committed
Decimal Vector
Signed-off-by: Nicholas Gates <[email protected]>
1 parent a0808e7 commit 21c15c9

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

vortex-vector/src/decimal/mod.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// SPDX-License-Identifier: Apache-2.0
2+
// SPDX-FileCopyrightText: Copyright the Vortex contributors
3+
4+
mod types;
5+
mod vector;
6+
mod vector_mut;

vortex-vector/src/decimal/types.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// SPDX-License-Identifier: Apache-2.0
2+
// SPDX-FileCopyrightText: Copyright the Vortex contributors
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// SPDX-License-Identifier: Apache-2.0
2+
// SPDX-FileCopyrightText: Copyright the Vortex contributors
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// SPDX-License-Identifier: Apache-2.0
2+
// SPDX-FileCopyrightText: Copyright the Vortex contributors

vortex-vector/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ pub use ops::{VectorMutOps, VectorOps};
3030
pub use vector::Vector;
3131
pub use vector_mut::VectorMut;
3232

33+
mod decimal;
3334
mod macros;
3435
mod private;

0 commit comments

Comments
 (0)