Wiki

Changes between Version 2 and Version 3 of Interface

Show
Ignore:
Timestamp:
11/22/10 19:52:51 (13 years ago)
Author:
todd.a
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Interface

    v2 v3  
    3636=== Interface Grammar === 
    3737{{{ 
     38#!cobra 
    3839# The grammar elements below are ordered for simplicity but the compiler will accept  
    3940# those elements in any reasonable order. 
     
    5960The members are accessed through the interface instance dimensions. 
    6061{{{ 
     62#!cobra 
    6163interface IDimensions 
    6264    """ Interface for Dimensions of a 2D object""" 
     
    103105Using generics 
    104106{{{ 
     107#!cobra 
    105108interface IEquatable<of T> 
    106109    """Interface for an object that can tell if it is equal to other objects of the same type"""