tapper 0.1.10 copy "tapper: ^0.1.10" to clipboard
tapper: ^0.1.10 copied to clipboard

Provides extension methods on all types to allow temporary, inspection/mutation (tap), transformation (pipe), and converting (conv)

Tapper #

Pub Version Dart Package Docs License: MIT Build Status

Provides extension methods on all types to allow temporary, inspection/mutation (tap), transformation (pipe), and safe type conversion without casting (conv).

Based on the Rust crate with a similar name tap.

Tap #

The Tap extension allows you to perform an operation on an object and then return the original object. It's useful for debugging, performing side effects, or logging.


int number = 10;
number = number
          .tap((n) => ++n )
          .tap((n) => print("The number is ${n}"));
// Prints: The number is 10

Pipe #

The Pipe extension lets you transform an object.

int number = 10;
number = number
          .pipe((n) => ++n )
          .pipe((n) { 
            print("The number is ${n}"); 
            return n;
          });
// Prints: The number is 11

Conv #

The Conv extension is used for type conversion. You can convert an object from one type to another, handling cases where the conversion is not possible.


String numericString = "123";
int? number = numericString.convInt(); // convInt exists for this type
// number is now 123

Try Conv exists for dynamic inputs and concrete output.

Object nonNumericString = "abc";
Result<int, ConvException> numberResult = nonNumericString.tryConv<int>();
// conversion is not possible and handled with Result

List<Set<List<int>>> nestedInt = [{[1]}];
Result<double, ConvException> doubleResult = nestedInt.tryConv<double>();
// doubleResult is Ok(1.0)

Valid Conversions #

Built-In

From Type To Type Method Used
int double convDouble()
int num convNum()
int BigInt convBigInt()
int String convString()
int bool convBool()
double int convInt()
double num convNum()
double BigInt convBigInt()
double String convString()
double bool convBool()
num int convInt()
num double convDouble()
num BigInt convBigInt()
num String convString()
num bool convBool()
BigInt int convInt()
BigInt double convDouble()
BigInt num convNum()
BigInt String convString()
BigInt bool convBool()
bool int convInt()
bool double convDouble()
bool num convNum()
bool BigInt convBigInt()
bool String convString()
String int? convInt()
String double? convDouble()
String num? convNum()
String BigInt? convBigInt()
String bool convBool()

Try Valid Conversions

Where T is any type in the current column.

From Types
int
double
num
BigInt
bool
String
Iterable<T>
To Types
int
double
num
BigInt
bool
String
2
likes
150
pub points
22%
popularity

Publisher

verified publishervoyver.com

Provides extension methods on all types to allow temporary, inspection/mutation (tap), transformation (pipe), and converting (conv)

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

rust_core

More

Packages that depend on tapper