All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avsystem.commons.redis.util.SingletonSeq.scala Maven / Gradle / Ivy

package com.avsystem.commons
package redis.util


final class SingletonSeq[+A](value: A) extends IIndexedSeq[A] {
  def length: Int = 1
  def apply(idx: Int): A = idx match {
    case 0 => value
    case _ => throw new IndexOutOfBoundsException
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy