Esempio n. 1
0
 public DebugView_(Maybe <T> inner)
 {
     _inner = inner;
 }
Esempio n. 2
0
        /// <summary>
        /// Verifies that <paramref name="maybe"/> evaluates to true in a
        /// boolean context.
        /// </summary>
        public static void LogicalTrue <T>(Maybe <T> maybe)
#if VISIBLE_INTERNALS
        => True(maybe.ToBoolean(), "The maybe should evaluate to true.");