-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rebuild arrays: start from new owned implementations
- Loading branch information
Showing
10 changed files
with
117 additions
and
386 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; |
Oops, something went wrong.