Function bind_c

Source
pub fn bind_c<TCon, TIn, TOut, F, TResult>(
    x: &<TCon as WithTypeArg<TIn>>::Type,
    f: F,
) -> TResult
where TCon: Monad + WithTypeArg<TIn> + WithTypeArg<TOut> + ?Sized, F: Fn(&TIn) -> TResult, TResult: TypeApp<TCon, TOut>,