func _checkInvariants()

in Sources/CollectionsBenchmark/Utilities/_SimpleSortedDictionary.swift [92:98]


  func _checkInvariants() {
    var last: Key? = nil
    for item in _elements {
      precondition(last == nil || last! < item.key)
      last = item.key
    }
  }