Changes between Initial Version and Version 1 of ClassTemplate


Ignore:
Timestamp:
09/21/15 18:55:38 (10 years ago)
Author:
epyon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ClassTemplate

    v1 v1  
     1{{{#!c++
     2class
     3{
     4    typedef ... size_type;
     5    typedef ... value_type;
     6    typedef ... this_type;
     7    typedef ... inherited_type;
     8
     9    static constexpr size_t SIZE = ;
     10    constexpr size_type size() const;
     11    constexpr bool empty() const;
     12    data();
     13    data() const;
     14   
     15...
     16    begin();
     17    end();
     18
     19
     20}
     21}}}