ref_out_box 1.1.0 copy "ref_out_box: ^1.1.0" to clipboard
ref_out_box: ^1.1.0 copied to clipboard

Wrapping values so that they can be passed by reference, like c#'s ref out

example/example.md

void tryDoSome(Out<bool> out) {
  trySetVal(out, true);
}
final out = Out<bool>();

tryDoSome(out);

out.val; // true

void addRef(Ref<int> ref) {
  tryChangeVal(ref, (val) => val + 1);
}
final ref = Ref(1);

addRef(ref);
addRef(ref);

ref.val; // 3
1
likes
40
pub points
56%
popularity

Publisher

unverified uploader

Wrapping values so that they can be passed by reference, like c#'s ref out

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

some

More

Packages that depend on ref_out_box