[][src]Trait bellperson::multiexp::QueryDensity

pub trait QueryDensity {
    type Iter: Iterator<Item = bool>;
    pub fn iter(self) -> Self::Iter;
pub fn get_query_size(self) -> Option<usize>; }

Associated Types

type Iter: Iterator<Item = bool>[src]

Returns whether the base exists.

Loading content...

Required methods

pub fn iter(self) -> Self::Iter[src]

pub fn get_query_size(self) -> Option<usize>[src]

Loading content...

Implementors

impl<'a> QueryDensity for &'a DensityTracker[src]

type Iter = Iter<'a>

impl<'a> QueryDensity for &'a FullDensity[src]

type Iter = Repeat<bool>

Loading content...