Skip to content

Commit

Permalink
revert some pub
Browse files Browse the repository at this point in the history
  • Loading branch information
yihozhang committed Nov 18, 2024
1 parent bdf7a46 commit 03859db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/function/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct TableOffset {
}

#[derive(Default, Clone)]
pub struct Table {
pub(crate) struct Table {
max_ts: u32,
n_stale: usize,
table: RawTable<TableOffset>,
Expand Down Expand Up @@ -262,7 +262,7 @@ impl Table {
}

/// Iterate over the live entries in the table, in insertion order.
pub fn iter(
pub(crate) fn iter(
&self,
include_subsumed: bool,
) -> impl Iterator<Item = (&[Value], &TupleOutput)> + '_ {
Expand Down

0 comments on commit 03859db

Please sign in to comment.