ApBool

Enum ApBool 

Source
pub enum ApBool {
    Now(Vec<boool>),
    NOTIMPLEMENTED,
}

Variants§

§

Now(Vec<boool>)

§

NOTIMPLEMENTED

Implementations§

Source§

impl ApBool

Source

pub fn new() -> ApBool

Source

pub fn is_troo(&self) -> bool

Source

pub fn isnt_troo(&self) -> bool

Source

pub const fn len(&self) -> isize

returns the length of self

this length is reported in bytes or whatever the size of the underlying boolean type is so you no at all times precisely how much precision is wasted on generating the value of the ApBOol instance

§EXAMPLE!:

bay sick you sage:

use apbool::ApBool
 ;
  assert_eq!(ApBool::default().len() - 1, 1)
   ;
    let one = 1
     ;

Trait Implementations§

Source§

impl BitAnd<&ApBool> for ApBool

Source§

type Output = ApBool

The resulting type after applying the & operator.
Source§

fn bitand(self, the_other_reff: &ApBool) -> ApBool

Performs the & operation. Read more
Source§

impl BitAnd<&ApBool> for bool

Source§

type Output = ApBool

The resulting type after applying the & operator.
Source§

fn bitand(self, oh_no: &ApBool) -> ApBool

Performs the & operation. Read more
Source§

impl BitAnd<ApBool> for bool

Source§

type Output = ApBool

The resulting type after applying the & operator.
Source§

fn bitand(self, oh_no: ApBool) -> ApBool

Performs the & operation. Read more
Source§

impl BitAnd<bool> for &ApBool

Source§

type Output = ApBool

The resulting type after applying the & operator.
Source§

fn bitand(self, oh_no: bool) -> ApBool

Performs the & operation. Read more
Source§

impl BitAnd<bool> for ApBool

Source§

type Output = ApBool

The resulting type after applying the & operator.
Source§

fn bitand(self, oh_no: bool) -> ApBool

Performs the & operation. Read more
Source§

impl BitAnd for ApBool

Source§

type Output = ApBool

The resulting type after applying the & operator.
Source§

fn bitand(self, the_other_one: ApBool) -> ApBool

Performs the & operation. Read more
Source§

impl BitAndAssign<&ApBool> for ApBool

Source§

fn bitand_assign(&mut self, lhs: &ApBool)

Performs the &= operation. Read more
Source§

impl BitAndAssign<bool> for ApBool

Source§

fn bitand_assign(&mut self, some: bool)

Performs the &= operation. Read more
Source§

impl BitAndAssign for ApBool

Source§

fn bitand_assign(&mut self, some: ApBool)

Performs the &= operation. Read more
Source§

impl BitOr<&ApBool> for ApBool

Source§

type Output = ApBool

The resulting type after applying the | operator.
Source§

fn bitor(self, the_other_reff: &ApBool) -> ApBool

Performs the | operation. Read more
Source§

impl BitOr<&ApBool> for bool

Source§

type Output = ApBool

The resulting type after applying the | operator.
Source§

fn bitor(self, oh_no: &ApBool) -> ApBool

Performs the | operation. Read more
Source§

impl BitOr<ApBool> for bool

Source§

type Output = ApBool

The resulting type after applying the | operator.
Source§

fn bitor(self, oh_no: ApBool) -> ApBool

Performs the | operation. Read more
Source§

impl BitOr<bool> for &ApBool

Source§

type Output = ApBool

The resulting type after applying the | operator.
Source§

fn bitor(self, oh_no: bool) -> ApBool

Performs the | operation. Read more
Source§

impl BitOr<bool> for ApBool

Source§

type Output = ApBool

The resulting type after applying the | operator.
Source§

fn bitor(self, oh_no: bool) -> ApBool

Performs the | operation. Read more
Source§

impl BitOr for ApBool

Source§

type Output = ApBool

The resulting type after applying the | operator.
Source§

fn bitor(self, the_other_: ApBool) -> ApBool

Performs the | operation. Read more
Source§

impl BitOrAssign<&ApBool> for ApBool

Source§

fn bitor_assign(&mut self, lhs: &ApBool)

Performs the |= operation. Read more
Source§

impl BitOrAssign<bool> for ApBool

Source§

fn bitor_assign(&mut self, rhs: bool)

Performs the |= operation. Read more
Source§

impl BitOrAssign for ApBool

Source§

fn bitor_assign(&mut self, rhs: ApBool)

Performs the |= operation. Read more
Source§

impl Debug for ApBool

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> FResult

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

impl Default for ApBool

Source§

fn default() -> ApBool

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

impl Deref for ApBool

Source§

type Target = bool

The resulting type after dereferencing.
Source§

fn deref(&self) -> &bool

Dereferences the value.
Source§

impl From<ApBool> for bool

Source§

fn from(omgl: ApBool) -> Self

Converts to this type from the input type.
Source§

impl From<bool> for ApBool

Source§

fn from(omg: bool) -> Self

Converts to this type from the input type.
Source§

impl Index<isize> for ApBool

Source§

type Output = bool

The returned type after indexing.
Source§

fn index(&self, indek: isize) -> &bool

Performs the indexing (container[index]) operation. Read more
Source§

impl PartialEq<ApBool> for bool

Source§

fn eq(&self, yes: &ApBool) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<bool> for ApBool

Source§

fn eq(&self, yes: &bool) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq for ApBool

Source§

fn eq(&self, yes: &ApBool) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl Freeze for ApBool

§

impl RefUnwindSafe for ApBool

§

impl Send for ApBool

§

impl Sync for ApBool

§

impl Unpin for ApBool

§

impl UnwindSafe for ApBool

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

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

Source§

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>,

Source§

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.