Struct polars::prelude::GroupsIdx

source ·
pub struct GroupsIdx { /* private fields */ }
Expand description

Indexes of the groups, the first index is stored separately. this make sorting fast.

Implementations§

source§

impl GroupsIdx

source

pub fn new(first: Vec<u32>, all: Vec<UnitVec<u32>>, sorted: bool) -> GroupsIdx

source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, u32>>, Iter<'_, UnitVec<u32>>>

source

pub fn all(&self) -> &[UnitVec<u32>]

source

pub fn first(&self) -> &[u32]

source

pub fn first_mut(&mut self) -> &mut Vec<u32>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GroupsIdx

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> GroupsProxy

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32>, Vec<UnitVec<u32>>)>> for GroupsIdx

source§

fn from(v: Vec<(Vec<u32>, Vec<UnitVec<u32>>)>) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<(u32, UnitVec<u32>)>> for GroupsIdx

source§

fn from(v: Vec<(u32, UnitVec<u32>)>) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, UnitVec<u32>)>>> for GroupsIdx

source§

fn from(v: Vec<Vec<(u32, UnitVec<u32>)>>) -> GroupsIdx

Converts to this type from the input type.
source§

impl FromIterator<(u32, UnitVec<u32>)> for GroupsIdx

source§

fn from_iter<T>(iter: T) -> GroupsIdx
where T: IntoIterator<Item = (u32, UnitVec<u32>)>,

Creates a value from an iterator. Read more
source§

impl FromParallelIterator<(u32, UnitVec<u32>)> for GroupsIdx

source§

fn from_par_iter<I>(par_iter: I) -> GroupsIdx
where I: IntoParallelIterator<Item = (u32, UnitVec<u32>)>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<'a> IntoIterator for &'a GroupsIdx

§

type Item = (u32, &'a UnitVec<u32>)

The type of the elements being iterated over.
§

type IntoIter = Zip<Copied<Iter<'a, u32>>, Iter<'a, UnitVec<u32>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for GroupsIdx

§

type Item = (u32, UnitVec<u32>)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<u32>, IntoIter<UnitVec<u32>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a GroupsIdx

§

type Iter = Zip<Copied<Iter<'a, u32>>, Iter<'a, UnitVec<u32>>>

The parallel iterator type that will be created.
§

type Item = (u32, &'a UnitVec<u32>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <&'a GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl IntoParallelIterator for GroupsIdx

§

type Iter = Zip<IntoIter<u32>, IntoIter<UnitVec<u32>>>

The parallel iterator type that will be created.
§

type Item = (u32, UnitVec<u32>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl PartialEq for GroupsIdx

source§

fn eq(&self, other: &GroupsIdx) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for GroupsIdx

source§

impl StructuralPartialEq for GroupsIdx

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<A, T, E> FromFallibleIterator<A, E> for T
where T: FromIterator<A>, E: Error,

source§

fn from_fallible_iter<F>(iter: F) -> Result<T, E>
where F: FallibleIterator<E, Item = A>,

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<'data, I> IntoParallelRefIterator<'data> for I
where I: 'data + ?Sized, &'data I: IntoParallelIterator,

§

type Iter = <&'data I as IntoParallelIterator>::Iter

The type of the parallel iterator that will be returned.
§

type Item = <&'data I as IntoParallelIterator>::Item

The type of item that the parallel iterator will produce. This will typically be an &'data T reference type.
source§

fn par_iter(&'data self) -> <I as IntoParallelRefIterator<'data>>::Iter

Converts self into a parallel iterator. Read more
source§

impl<I> IntoStreamingIterator for I
where I: IntoIterator,

source§

fn into_streaming_iter(self) -> Convert<Self::IntoIter>

source§

fn into_streaming_iter_ref<'a, T>(self) -> ConvertRef<'a, Self::IntoIter, T>
where Self: IntoIterator<Item = &'a T>, T: ?Sized,

Turns an IntoIterator of references into a StreamingIterator. Read more
source§

fn into_streaming_iter_mut<'a, T>(self) -> ConvertMut<'a, Self::IntoIter, T>
where Self: IntoIterator<Item = &'a mut T>, T: ?Sized,

Turns an IntoIterator of mutable references into a StreamingIteratorMut. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V