Skip to content

Commit

Permalink
rebuild arrays: start from new owned implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Sep 21, 2024
1 parent 38aafcc commit 873d94e
Show file tree
Hide file tree
Showing 10 changed files with 117 additions and 386 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "baa"
version = "0.10.0"
version = "0.11.0"
edition = "2021"
authors = ["Kevin Laeufer <[email protected]>"]
description = "BitVector and Array Arithmetic"
Expand Down
113 changes: 0 additions & 113 deletions src/array/borrowed.rs

This file was deleted.

158 changes: 0 additions & 158 deletions src/array/indexed.rs

This file was deleted.

4 changes: 0 additions & 4 deletions src/array/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@
// released under BSD 3-Clause License
// author: Kevin Laeufer <[email protected]>

mod borrowed;
mod indexed;
mod ops;
mod owned;

pub use borrowed::{ArrayValueMutRef, ArrayValueRef};
pub use indexed::ArrayValueIndex;
pub use ops::{ArrayMutOps, ArrayOps};
pub use owned::ArrayValue;
Loading

0 comments on commit 873d94e

Please sign in to comment.