:: multimethod
Methods
- ::(nti:NormalTypeInstance, k:Any) Source: stdlib.ngs:99
Get NormalType object field. Useful when calling method stored in an field. Example
myobj::method_in_field(arg) # calls method stored in myobj.method_in_field (myobj.method_in_field)(arg) # calls method stored in myobj.method_in_field myobj.method_in_field(arg) # calls global "method_in_field"
- ::(h:Hash, k:Any) Source: stdlib.ngs:104
Get Hash key. Useful when calling method stored in a Hash key. Useful for working with namespaces, which are implemented as Hash instances. Example
elb = AWS::Elb(...).converge(...)