kumulant/com.eignex.kumulant.stat.event/RunLengthResult RunLengthResult @Serializable@SerialName(value = "RunLengthResult")data class RunLengthResult(val current: Long, val longest: Long) : Result(source)Current and longest consecutive truthy-run lengths. Members Constructors RunLengthResult Link copied to clipboard constructor(current: Long, longest: Long) Properties current Link copied to clipboard val current: LongLength of the current run; reset to zero when the input was last falsy. longest Link copied to clipboard val longest: LongLongest run observed so far. RunLengthResult constructor(current: Long, longest: Long)(source) current val current: Long(source)Length of the current run; reset to zero when the input was last falsy. longest val longest: Long(source)Longest run observed so far.