Skip to content
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.

Latest commit

 

History

History
35 lines (26 loc) · 621 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 621 Bytes

pub MIT


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

Example

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