arrow-core / arrow.core.extensions / ConstApplicative
interface ~~ConstApplicative~~<A> : Applicative<ConstPartialOf<A>>
Deprecated: Applicative typeclass is deprecated and will be removed in 0.13.0. Use concrete methods on Const
| ap | open fun <T, U> ConstOf<A, T>.ap(ff: ConstOf<A, (T) -> U>): Const<A, U> | 
    
| just | open fun <T> just(a: T): Const<A, T> | 
    
| MA | abstract fun MA(): Monoid<A> | 
    
| map | open fun <T, U> ConstOf<A, T>.map(f: (T) -> U): Const<A, U> | 
    
Do you like Arrow?
✖