object Utils
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Utils
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addToMultimap[K, V](m: Map[K, List[V]], k: K, v: V): Map[K, List[V]]
- def adjacentPairs[T](xs: List[T]): List[(T, T)]
- def adjacentPairsWithPreviousAndNext[T](xs: List[T]): List[(Option[T], T, T, Option[T])]
- def adjacentTriples[T](xs: List[T]): List[(T, T, T)]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
def
conditionallyMap[T](xs: List[T])(fn: PartialFunction[T, T]): List[T]
Map over a list, optionally transforming some of the elements
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def getResourceAsString(path: String): String
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
iterate[T](t: T, f: (T) ⇒ Option[T]): T
- Annotations
- @tailrec()
- def makeMap[T, U](s: Iterable[T], f: (T) ⇒ U): Map[T, U]
- def mkMultiset[T](set1: List[T]): Map[T, Int]
- def multisetCompare[T](set1: List[T], set2: List[T]): Boolean
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def removeFirst[T](xs: List[T], x: T): List[T]
- def signum(x: Int): Int
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def transformValues[K, V, V2](map: Map[K, V])(f: (V) ⇒ V2): Map[K, V2]
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def withPrevious[T](iterable: Iterable[T]): List[(Option[T], T)]
- def withPreviousAndNext[T](iterable: Iterable[T]): List[(Option[T], T, Option[T])]