Wiki

Changes between Version 9 and Version 10 of ReleaseNotes_0_9_0

Show
Ignore:
Timestamp:
09/27/12 07:56:14 (12 years ago)
Author:
Charles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseNotes_0_9_0

    v9 v10  
    2323 * Improved the default formatting of the `trace` statement (which is also configurable). 
    2424 * Added `CobraCore.operatingSystemDescription as String`. 
    25  * Added `Stack.clone` extension method that preserves the ordering of the stack elements. 
    26  * Added `String.limitLength(maxLength as int, suffix as String?) as String` extension method. 
     25 * Added extension methods: 
     26   * interface IList 
     27     * def addRange(items as System.Collections.IEnumerable) 
     28   * interface IList<of T> 
     29     * def addRange(items as IEnumerable<of T>) 
     30     * def pop as T 
     31   * class Stack<of T>: def clone as Stack<of T> 
     32   * class String 
     33     * def before(sep as String) as String 
     34     * def after(sep as String) as String 
     35     * def count(substring as String) as int 
     36     * def limitLength(maxLength as int, suffix as String?) as String 
     37     * def repeat(times as int) as String 
    2738 * Added `GtkSourceView` sample program. 
     39 * Added `CobraCore.htmlDecode`, `.urlEncode` and `.urlDecode`. 
    2840 * A Cobra.Compiler library is now always provided during installation. 
    2941 * Bug fixes.