Sha256: 1806a093aa72df998e8c85e1d4cbb8ed8afe7499d7fb8509761b7bc7eaf1ae30
Contents?: true
Size: 267 Bytes
Versions: 63
Compression:
Stored size: 267 Bytes
Contents
/// Type implementing arbitrary-precision decimal arithmetic pub struct Decimal { // implement your type here } impl Decimal { pub fn try_from(input: &str) -> Option<Decimal> { unimplemented!("Create a new decimal with a value of {}", input) } }
Version data entries
63 entries across 63 versions & 1 rubygems