API Diff between 0.7.2 and 0.8.1-prerelease
12 Additions
23 Removals
FnX
-
public static class Fn
- public static void Action<TIn>(this TIn self, Action<TIn> action)
- public static Func<T1, TOut> FuncFromAnonymous<T1, TOut>(this T1 type, Func<T1, TOut> constructor)
- public static TOut Map<TIn, TOut>(this TIn self, Func<TIn, TOut> func)
- public static TOut Map<TIn, TOut>(this TIn self, Func<TOut> func)
- public static TOut Map<TOut>(Func<TOut> func)
- public static TOut Map<T1, TOut>(Func<T1, TOut> func, T1 t1)
- public static TOut Map<T1, T2, TOut>(Func<T1, T2, TOut> func, T1 t1, T2 t2)
- public static TOut Map<T1, T2, T3, TOut>(Func<T1, T2, T3, TOut> func, T1 t1, T2 t2, T3 t3)
- public static TOut Map<T1, T2, T3, T4, TOut>(Func<T1, T2, T3, T4, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4)
- public static TOut Map<T1, T2, T3, T4, T5, TOut>(Func<T1, T2, T3, T4, T5, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5)
- public static TOut Map<T1, T2, T3, T4, T5, T6, TOut>(Func<T1, T2, T3, T4, T5, T6, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6)
- public static TOut Map<T1, T2, T3, T4, T5, T6, T7, TOut>(Func<T1, T2, T3, T4, T5, T6, T7, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7)
- public static TOut Map<T1, T2, T3, T4, T5, T6, T7, T8, TOut>(Func<T1, T2, T3, T4, T5, T6, T7, T8, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8)
- public static TOut Map<T1, T2, T3, T4, T5, T6, T7, T8, T9, TOut>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9)
- public static T MapIf<T>(this T self, Func<T, bool> cont, Func<T, T> func)
- public static T MapIf<T>(this T self, Func<T, bool> cont, Func<T> func)
- public static bool MapIf(this bool self, Func<bool> func)
- public static T MapIf<T>(this T self, bool cont, Func<T, T> func)
- public static IEnumerable<T> MapIfEmpty<T>(this IEnumerable<T> self, Func<IEnumerable<T>> func)
- public static IEnumerable<T> MapIfEmptyAnd<T>(this IEnumerable<T> self, Func<IEnumerable<T>, bool> cont, Func<IEnumerable<T>> func)
- public static T MapIfNull<T>(this T self, Func<T> func)
- public static T MapIfNullAnd<T>(this T self, Func<T, bool> cont, Func<T> func)
- public static TOut Select<TIn, TOut>(this TIn self, Func<TIn, TOut> func)
- public static TOut Select<TIn, TOut>(this TIn self, Func<TOut> func)
- public static TOut Select<TOut>(Func<TOut> func)
- public static TOut Select<T1, TOut>(Func<T1, TOut> func, T1 t1)
- public static TOut Select<T1, T2, TOut>(Func<T1, T2, TOut> func, T1 t1, T2 t2)
- public static TOut Select<T1, T2, T3, TOut>(Func<T1, T2, T3, TOut> func, T1 t1, T2 t2, T3 t3)
- public static TOut Select<T1, T2, T3, T4, TOut>(Func<T1, T2, T3, T4, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4)
- public static TOut Select<T1, T2, T3, T4, T5, TOut>(Func<T1, T2, T3, T4, T5, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5)
- public static TOut Select<T1, T2, T3, T4, T5, T6, TOut>(Func<T1, T2, T3, T4, T5, T6, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6)
- public static TOut Select<T1, T2, T3, T4, T5, T6, T7, TOut>(Func<T1, T2, T3, T4, T5, T6, T7, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7)
- public static TOut Select<T1, T2, T3, T4, T5, T6, T7, T8, TOut>(Func<T1, T2, T3, T4, T5, T6, T7, T8, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8)
- public static TOut Select<T1, T2, T3, T4, T5, T6, T7, T8, T9, TOut>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TOut> func, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9)
- public static Func<A, R> Y<A, R>(this R self, Func<Func<A, R>, Func<A, R>> f)