arrow-core-data / arrow.core / Ior / Right
data class Right<out B> : Ior<Nothing, B>
| <init> | Right(value: B) | 
    
| isBoth | Returns true if this is a Both, false otherwise.val isBoth: Boolean | 
    
| isLeft | Returns true if this is a Left, false otherwise.val isLeft: Boolean | 
    
| isRight | Returns true if this is a Right, false otherwise.val isRight: Boolean | 
    
| value | val value: B | 
    
| toString | fun toString(): String | 
    
| invoke | operator fun <B> ~~invoke~~(b: B): Ior<Nothing, B> | 
    
Do you like Arrow?
✖