An alternative syntax for the procedures' signatures in the example, maybe is 
more to your taste:
    
    
    proc insert(this: var Dictionary, key: Dictionary.Key, value: 
Dictionary.Value) =
      ...
    proc find(this: var Dictionary, key: Dictionary.Key): Dictionary.Value =
      ...
    

Reply via email to