pub struct Value(pub BTreeMap<CurrencySymbol, BTreeMap<TokenName, BigInt>>);
Expand description
A value that can contain multiple asset classes
Tuple Fields§
§0: BTreeMap<CurrencySymbol, BTreeMap<TokenName, BigInt>>
Implementations§
Source§impl Value
impl Value
pub fn new() -> Self
Sourcepub fn ada_value(amount: &BigInt) -> Self
pub fn ada_value(amount: &BigInt) -> Self
Create a Value containing only ada tokens, given the quantity in lovelace.
Sourcepub fn token_value(cs: &CurrencySymbol, tn: &TokenName, amount: &BigInt) -> Self
pub fn token_value(cs: &CurrencySymbol, tn: &TokenName, amount: &BigInt) -> Self
Create a Value containing only the given quantity of the given token.
Sourcepub fn get_token_amount(&self, cs: &CurrencySymbol, tn: &TokenName) -> BigInt
pub fn get_token_amount(&self, cs: &CurrencySymbol, tn: &TokenName) -> BigInt
Lookup the quantity of the given token.
Sourcepub fn get_ada_amount(&self) -> BigInt
pub fn get_ada_amount(&self) -> BigInt
Lookup the quantity of ada(unit: lovelace).
Sourcepub fn insert_token(
&self,
cs: &CurrencySymbol,
tn: &TokenName,
a: &BigInt,
) -> Self
pub fn insert_token( &self, cs: &CurrencySymbol, tn: &TokenName, a: &BigInt, ) -> Self
Insert a new token into the value, or replace the existing quantity.
pub fn is_subset(&self, b: &Value) -> bool
pub fn is_pure_ada(&self) -> bool
Sourcepub fn map_amount<F>(self, f: F) -> Self
pub fn map_amount<F>(self, f: F) -> Self
Apply a function to each token of the value, and use its result as the new amount.
Sourcepub fn filter_map_amount<F>(self, f: F) -> Self
pub fn filter_map_amount<F>(self, f: F) -> Self
Apply a function to each token of the value. If the result is None, the token entry will be removed.
Note that if the name-quantity map of any given currency symbols is empty, the currency entry will be removed from the top-level map entirely.
Sourcepub fn flatten(&self) -> Vec<(&CurrencySymbol, &TokenName, &BigInt)>
pub fn flatten(&self) -> Vec<(&CurrencySymbol, &TokenName, &BigInt)>
Create a vector with each distinct value Warning: is the value is not normalized, the same asset class can appear twice
pub fn unflatten(list: &[(CurrencySymbol, TokenName, BigInt)]) -> Self
Trait Implementations§
Source§impl IsPlutusData for Value
impl IsPlutusData for Value
fn to_plutus_data(&self) -> PlutusData
fn from_plutus_data(data: &PlutusData) -> Result<Self, PlutusDataError>
Source§impl Ord for Value
impl Ord for Value
Source§impl PartialOrd for Value
impl PartialOrd for Value
Source§impl TryFromPLA<Value> for Value
impl TryFromPLA<Value> for Value
fn try_from_pla(val: &Value) -> Result<Self, TryFromPLAError>
impl Eq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> FromStr for T
impl<T> FromStr for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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