Skip to content

Commit

Permalink
expose
Browse files Browse the repository at this point in the history
  • Loading branch information
1024bees committed Sep 23, 2023
1 parent 9720b5a commit ce8da04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl Display for Value {
/// This currently wraps a `Vec<Value>` but could be implemented with
/// a bitmap in the future.
#[derive(Clone, PartialEq, Eq)]
pub struct Vector(Vec<Value>);
pub struct Vector(pub Vec<Value>);

impl Vector {
/// Returns the number of bits in the vector.
Expand Down

0 comments on commit ce8da04

Please sign in to comment.