Group

Struct Group 

Source
pub struct Group<'a, T> { /* private fields */ }
Expand description

A monoid with inverses.

Group is a representation of the abstract algebraic group. Associativity, invertibility, and identity preservation are all required of its binary operation. Its construction involves a set (specifically an AlgaeSet) and a BinaryOperation with the aforementioned properties.

§Examples

use algae_rs::algaeset::AlgaeSet;
use algae_rs::mapping::{BinaryOperation, GroupOperation};
use algae_rs::magma::{Magmoid, Group};

let mut add = GroupOperation::new(&|a, b| a + b, &|a, b| a - b, 0);
let mut group = Group::new(AlgaeSet::<i32>::all(), &mut add, 0);

let sum = group.with(1, 2);
assert!(sum.is_ok());
assert!(sum.unwrap() == 3);

let difference = group.with(1, -1);
assert!(difference.is_ok());
assert!(difference.unwrap() == 0);

let mut bad_add = GroupOperation::new(&|a, b| a + b, &|a, b| a * b, 0);
let mut bad_group = Group::new(AlgaeSet::<i32>::all(), &mut bad_add, 0);

let bad_sum = bad_group.with(3, 2);
assert!(bad_sum.is_err());

let bad_difference = bad_group.with(1, -1);
assert!(bad_difference.is_err());

Implementations§

Source§

impl<'a, T: Copy + PartialEq> Group<'a, T>

Source

pub fn new( aset: AlgaeSet<T>, binop: &'a mut dyn BinaryOperation<T>, identity: T, ) -> Self

Trait Implementations§

Source§

impl<'a, T> From<Group<'a, T>> for Magma<'a, T>

Source§

fn from(group: Group<'a, T>) -> Magma<'a, T>

Converts to this type from the input type.
Source§

impl<'a, T: Copy + PartialEq> From<Group<'a, T>> for Quasigroup<'a, T>

Source§

fn from(group: Group<'a, T>) -> Quasigroup<'a, T>

Converts to this type from the input type.
Source§

impl<'a, T: Copy + PartialEq> From<Group<'a, T>> for UnitalMagma<'a, T>

Source§

fn from(group: Group<'a, T>) -> UnitalMagma<'a, T>

Converts to this type from the input type.
Source§

impl<'a, T: Copy + PartialEq> Magmoid<T> for Group<'a, T>

Source§

fn binop(&mut self) -> &mut dyn BinaryOperation<T>

Source§

fn with(&mut self, left: T, right: T) -> Result<T, PropertyError>

Auto Trait Implementations§

§

impl<'a, T> Freeze for Group<'a, T>
where T: Freeze,

§

impl<'a, T> !RefUnwindSafe for Group<'a, T>

§

impl<'a, T> !Send for Group<'a, T>

§

impl<'a, T> !Sync for Group<'a, T>

§

impl<'a, T> Unpin for Group<'a, T>
where T: Unpin,

§

impl<'a, T> !UnwindSafe for Group<'a, T>

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