FuncType - v0.16.0
    Preparing search index...

    Interface Doable<T>

    Interface for types that support Do-notation Implementing this interface allows a type to be yielded in Do-comprehensions

    The doUnwrap method should return a DoResult indicating success/failure and the contained value or error information

    interface Doable<T> {
        doUnwrap(): DoResult<T>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods

    Methods