protocol SearchTree
s5Utils10SearchTreeP
1ZWC5
import Utils
associatedtype Element : Comparable
func contains(_ element: Element) -> Bool
@discardableResult func insert(_ element: Element) -> Bool
@discardableResult func remove(_ element: Element) -> Bool