The result of performing a search on a sorted sequence, where the element was found.
The result of performing a search on a sorted sequence, where the element was found.
the index corresponding to the element searched for in the sequence
The result of performing a search on a sorted sequence, where the element was not found
The result of performing a search on a sorted sequence, where the element was not found
the index where the element would be inserted in the sequence
The result of performing a search on a sorted sequence
The result of performing a search on a sorted sequence
Example usage:
val list = List(1, 3, 4, 5) // list must be sorted before searchinglist.search(4) // Found(2)list.search(2) // InsertionPoint(1)[Since version 2.13.0]Search methods are defined directly on SeqOps and do not require scala.collection.Searching any more[Since version 2.13.0]Search methods are defined directly on SeqOps and do not require scala.collection.Searching any more