Skip to content

Instantly share code, notes, and snippets.

@CoditCompany
Created July 12, 2019 07:23
Show Gist options
  • Save CoditCompany/77d122fd611bdd5b87687e09634e4976 to your computer and use it in GitHub Desktop.
Save CoditCompany/77d122fd611bdd5b87687e09634e4976 to your computer and use it in GitHub Desktop.
int unknown = 5;
var untrusted = Untrust<int>(unknown);
if (untrusted.TryGetValue(x => x > 3, out int trusted))
{
// Set 'trusted' now into dedicated 'Int' type.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment