[][src]Struct bibicode::BibiCoder

pub struct BibiCoder { /* fields omitted */ }

Convert any number from one numeral system to the other.

Methods

impl BibiCoder[src]

pub fn new(numsys_in: NumeralSystem, numsys_out: NumeralSystem) -> BibiCoder[src]

Build a coder from numsys_in numeral system to numsys_out

pub fn extract_numbers(entry: &str, reg: &str) -> Result<Vec<String>, BibiError>[src]

find all numbers in entry from regular expression

pub fn swap(&self, entry: &str) -> Result<String, BibiError>[src]

Swap an integer coded in numsys_in system to numsys_out

Trait Implementations

impl Debug for BibiCoder[src]

Auto Trait Implementations

impl Send for BibiCoder

impl Sync for BibiCoder

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]