Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Make crate-private
Browse files Browse the repository at this point in the history
Co-authored-by: Jorge Leitao <jorgecarleitao@gmail.com>
  • Loading branch information
AnIrishDuck and jorgecarleitao committed Oct 21, 2022
1 parent 1015950 commit 1fb85ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/array/list/mutable.rs
Expand Up @@ -164,7 +164,7 @@ impl<O: Offset, M: MutableArray> MutableListArray<O, M> {
/// - the new offsets are not in monotonic increasing order.
/// - any new offset is not in bounds of the backing array.
/// - the passed iterator has no upper bound.
pub fn extend_offsets<II>(&mut self, expansion: II)
pub(crate) fn extend_offsets<II>(&mut self, expansion: II)
where
II: TrustedLen<Item = Option<O>>,
{
Expand Down Expand Up @@ -197,7 +197,7 @@ impl<O: Offset, M: MutableArray> MutableListArray<O, M> {
/// zero if the array is currently empty.
///
/// Panics if the passed iterator has no upper bound.
pub unsafe fn unsafe_extend_offsets<II>(&mut self, expansion: II)
pub(crate) unsafe fn unsafe_extend_offsets<II>(&mut self, expansion: II)
where
II: TrustedLen<Item = Option<O>>,
{
Expand Down

0 comments on commit 1fb85ec

Please sign in to comment.