Changes between Version 2 and Version 3 of Interface
- Timestamp:
- 11/22/10 19:52:51 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Interface
v2 v3 36 36 === Interface Grammar === 37 37 {{{ 38 #!cobra 38 39 # The grammar elements below are ordered for simplicity but the compiler will accept 39 40 # those elements in any reasonable order. … … 59 60 The members are accessed through the interface instance dimensions. 60 61 {{{ 62 #!cobra 61 63 interface IDimensions 62 64 """ Interface for Dimensions of a 2D object""" … … 103 105 Using generics 104 106 {{{ 107 #!cobra 105 108 interface IEquatable<of T> 106 109 """Interface for an object that can tell if it is equal to other objects of the same type"""