12 Interface-Oriented Programming for Classes
(require unstable/class-iop) | package: unstable-list-lib |
syntax
(define-interface name-id (super-ifc-id ...) (method-id ...))
A static interface name is used by the checked method call variants (send/i, send*/i, and send/apply/i). When used as an expression, a static interface name evaluates to an interface value.
Examples: | |||||||||||||||
|
syntax
(define-interface/dynamic name-id ifc-expr (method-id ...))
Use define-interface/dynamic to wrap interfaces from other sources.
Examples: | |||||
|
syntax
(send/i obj-exp static-ifc-id method-id arg-expr ...)
The argument static-ifc-id must be defined as a static interface. The method method-id must be a member of the static interface static-ifc-id; otherwise a compile-time error is raised.
The value of obj-expr must be an instance of the interface static-ifc-id; otherwise, a run-time error is raised.
Examples: | |||||||||||
|
syntax
(send*/i obj-expr static-ifc-id (method-id arg-expr ...) ...)
Example: | ||||||
|
syntax
(send/apply/i obj-expr static-ifc-id method-id arg-expr ... list-arg-expr)
Example: | |||
|
syntax
(define/i id static-ifc-id expr)
No dynamic object check is performed when calling a method (using send/i, etc) on a name defined via define/i.
syntax
(init/i (id static-ifc-id maybe-default-expr) ...)
syntax
(init-field/i (id static-ifc-id maybe-default-expr) ...)
syntax
(init-private/i (id static-ifc-id maybe-default-expr) ...)
maybe-default-expr = () | default-expr
No dynamic object check is performed when calling a method (using send/i, etc) on a name bound via one of these forms. Note that in the case of init-field/i this check omission is unsound in the presence of mutation from outside the class. This should be fixed.
syntax
(define-interface-expander id transformer-expr)
Examples: | ||||||||||||
|