Skip to content

Instantly share code, notes, and snippets.

[<Sealed>]
type Impossible private () =
static let wtf () = failwith "WTF?!"
do wtf ()
static member handle (_ : Impossible) = wtf ()
static member id (impossible : Impossible) = impossible
[<AutoOpen>]
namespace Gjallarhorn.Bindable
open Gjallarhorn
open Gjallarhorn.Bindable
open Gjallarhorn.Helpers
open System
open System.Windows.Input
type internal ManagedParameterCommand<'a> (allowExecute : ISignal<'a -> bool>) as self =