![]() |
BadScript 2
|
This is the complete list of members for CSharpx.MaybeExtensions, including all inherited members.
| Bind< T1, T2 >(this Maybe< T1 > maybe, Func< T1, Maybe< T2 > > func) | CSharpx.MaybeExtensions | static |
| Do< T >(this Maybe< T > maybe, Action< T > action) | CSharpx.MaybeExtensions | static |
| Do< T1, T2 >(this Maybe< Tuple< T1, T2 > > maybe, Action< T1, T2 > action) | CSharpx.MaybeExtensions | static |
| FromJust< T >(this Maybe< T > maybe) | CSharpx.MaybeExtensions | static |
| FromJustOrFail< T >(this Maybe< T > maybe, Exception exceptionToThrow=null) | CSharpx.MaybeExtensions | static |
| GetValueOrDefault< T >(this Maybe< T > maybe, T noneValue) | CSharpx.MaybeExtensions | static |
| IsJust< T >(this Maybe< T > maybe) | CSharpx.MaybeExtensions | static |
| IsNothing< T >(this Maybe< T > maybe) | CSharpx.MaybeExtensions | static |
| Map< T1, T2 >(this Maybe< T1 > maybe, Func< T1, T2 > func) | CSharpx.MaybeExtensions | static |
| MapValueOrDefault< T1, T2 >(this Maybe< T1 > maybe, Func< T1, T2 > func, T2 noneValue) | CSharpx.MaybeExtensions | static |
| MapValueOrDefault< T1, T2 >(this Maybe< T1 > maybe, Func< T1, T2 > func, Func< T2 > noneValueFactory) | CSharpx.MaybeExtensions | static |
| Match< T >(this Maybe< T > maybe, Action< T > ifJust, Action ifNothing) | CSharpx.MaybeExtensions | static |
| Match< T1, T2 >(this Maybe< Tuple< T1, T2 > > maybe, Action< T1, T2 > ifJust, Action ifNothing) | CSharpx.MaybeExtensions | static |
| MatchJust< T1, T2 >(this Maybe< Tuple< T1, T2 > > maybe, out T1 value1, out T2 value2) | CSharpx.MaybeExtensions | static |
| Select< TSource, TResult >(this Maybe< TSource > maybe, Func< TSource, TResult > selector) | CSharpx.MaybeExtensions | static |
| SelectMany< TSource, TValue, TResult >(this Maybe< TSource > maybe, Func< TSource, Maybe< TValue > > valueSelector, Func< TSource, TValue, TResult > resultSelector) | CSharpx.MaybeExtensions | static |
| ToEnumerable< T >(this Maybe< T > maybe) | CSharpx.MaybeExtensions | static |
| ToMaybe< T >(this T value) | CSharpx.MaybeExtensions | static |