Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/prelude/prelude.cf

    r8053d2c r496ab8d  
    77// Created On       : Sat Nov 29 07:23:41 2014
    88// Last Modified By : Peter A. Buhr
    9 // Last Modified On : Sat Oct 28 16:33:09 2017
    10 // Update Count     : 102
     9// Last Modified On : Sun Oct  8 12:21:33 2017
     10// Update Count     : 97
    1111//
    1212
     
    4141_Bool                   ?++( _Bool & ),                         ?++( volatile _Bool & );
    4242_Bool                   ?--( _Bool & ),                         ?--( volatile _Bool & );
     43unsigned char           ?++( unsigned char & ),                 ?++( volatile unsigned char & );
    4344signed short            ?++( signed short & ),                  ?++( volatile signed short & );
    4445signed short            ?--( signed short & ),                  ?--( volatile signed short & );
     
    195196long double _Complex    ?+?( long double _Complex, long double _Complex ),      ?-?( long double _Complex, long double _Complex );
    196197
    197 forall( dtype T | sized(T) ) T *                ?+?(                T *,          ptrdiff_t );
    198 forall( dtype T | sized(T) ) T *                ?+?(          ptrdiff_t,                T * );
     198forall( dtype T | sized(T) ) T *                        ?+?(                T *,          ptrdiff_t );
     199forall( dtype T | sized(T) ) T *                        ?+?(          ptrdiff_t,                T * );
    199200forall( dtype T | sized(T) ) const T *          ?+?( const          T *,          ptrdiff_t );
    200201forall( dtype T | sized(T) ) const T *          ?+?(          ptrdiff_t, const          T * );
    201 forall( dtype T | sized(T) ) volatile T *       ?+?(       volatile T *,          ptrdiff_t );
    202 forall( dtype T | sized(T) ) volatile T *       ?+?(          ptrdiff_t,       volatile T * );
     202forall( dtype T | sized(T) ) volatile T *               ?+?(       volatile T *,          ptrdiff_t );
     203forall( dtype T | sized(T) ) volatile T *               ?+?(          ptrdiff_t,       volatile T * );
    203204forall( dtype T | sized(T) ) const volatile T * ?+?( const volatile T *,          ptrdiff_t );
    204205forall( dtype T | sized(T) ) const volatile T * ?+?(          ptrdiff_t, const volatile T * );
    205 forall( dtype T | sized(T) ) T *                ?-?(                T *,          ptrdiff_t );
     206forall( dtype T | sized(T) ) T *                        ?-?(                T *,          ptrdiff_t );
    206207forall( dtype T | sized(T) ) const T *          ?-?( const          T *,          ptrdiff_t );
    207 forall( dtype T | sized(T) ) volatile T *       ?-?(       volatile T *,          ptrdiff_t );
     208forall( dtype T | sized(T) ) volatile T *               ?-?(       volatile T *,          ptrdiff_t );
    208209forall( dtype T | sized(T) ) const volatile T * ?-?( const volatile T *,          ptrdiff_t );
    209210forall( dtype T | sized(T) ) ptrdiff_t          ?-?( const volatile T *, const volatile T * );
     
    231232signed int ?<?( _Bool, _Bool ),                                         ?<=?( _Bool, _Bool ),
    232233           ?>?( _Bool, _Bool ),                                         ?>=?( _Bool, _Bool );
    233 signed int ?<?( char, char ),                                           ?<=?( char, char ),
    234            ?>?( char, char ),                                           ?>=?( char, char );
     234signed int ?<?( char, char ),                           ?<=?( char, char ),
     235           ?>?( char, char ),                           ?>=?( char, char );
    235236signed int ?<?( signed char, signed char ),                             ?<=?( signed char, signed char ),
    236237           ?>?( signed char, signed char ),                             ?>=?( signed char, signed char );
     
    240241           ?>?( signed short, signed short ),                           ?>=?( signed short, signed short );
    241242signed int ?<?( unsigned short, unsigned short ),                       ?<=?( unsigned short, unsigned short ),
    242            ?>?( unsigned short, unsigned short ),                       ?>=?( unsigned short, unsigned short );
     243           ?>?( unsigned short, unsigned short ),                               ?>=?( unsigned short, unsigned short );
    243244signed int ?<?( signed int, signed int ),                               ?<=?( signed int, signed int ),
    244245           ?>?( signed int, signed int ),                               ?>=?( signed int, signed int );
     
    473474forall( ftype FT ) FT *                 ?=?( FT * volatile &, zero_t );
    474475
    475 forall( dtype T | sized(T) ) T *                ?+=?(                T *          &, ptrdiff_t );
    476 forall( dtype T | sized(T) ) T *                ?+=?(                T * volatile &, ptrdiff_t );
     476forall( dtype T | sized(T) ) T *                        ?+=?(                T *          &, ptrdiff_t );
     477forall( dtype T | sized(T) ) T *                        ?+=?(                T * volatile &, ptrdiff_t );
    477478forall( dtype T | sized(T) ) const T *          ?+=?( const          T *          &, ptrdiff_t );
    478479forall( dtype T | sized(T) ) const T *          ?+=?( const          T * volatile &, ptrdiff_t );
    479 forall( dtype T | sized(T) ) volatile T *       ?+=?(       volatile T *          &, ptrdiff_t );
    480 forall( dtype T | sized(T) ) volatile T *       ?+=?(       volatile T * volatile &, ptrdiff_t );
     480forall( dtype T | sized(T) ) volatile T *               ?+=?(       volatile T *          &, ptrdiff_t );
     481forall( dtype T | sized(T) ) volatile T *               ?+=?(       volatile T * volatile &, ptrdiff_t );
    481482forall( dtype T | sized(T) ) const volatile T * ?+=?( const volatile T *          &, ptrdiff_t );
    482483forall( dtype T | sized(T) ) const volatile T * ?+=?( const volatile T * volatile &, ptrdiff_t );
    483 forall( dtype T | sized(T) ) T *                ?-=?(                T *          &, ptrdiff_t );
    484 forall( dtype T | sized(T) ) T *                ?-=?(                T * volatile &, ptrdiff_t );
     484forall( dtype T | sized(T) ) T *                        ?-=?(                T *          &, ptrdiff_t );
     485forall( dtype T | sized(T) ) T *                        ?-=?(                T * volatile &, ptrdiff_t );
    485486forall( dtype T | sized(T) ) const T *          ?-=?( const          T *          &, ptrdiff_t );
    486487forall( dtype T | sized(T) ) const T *          ?-=?( const          T * volatile &, ptrdiff_t );
    487 forall( dtype T | sized(T) ) volatile T *       ?-=?(       volatile T *          &, ptrdiff_t );
    488 forall( dtype T | sized(T) ) volatile T *       ?-=?(       volatile T * volatile &, ptrdiff_t );
     488forall( dtype T | sized(T) ) volatile T *               ?-=?(       volatile T *          &, ptrdiff_t );
     489forall( dtype T | sized(T) ) volatile T *               ?-=?(       volatile T * volatile &, ptrdiff_t );
    489490forall( dtype T | sized(T) ) const volatile T * ?-=?( const volatile T *          &, ptrdiff_t );
    490491forall( dtype T | sized(T) ) const volatile T * ?-=?( const volatile T * volatile &, ptrdiff_t );
     
    502503signed long long int    ?=?( signed long long int &, signed long long int ),    ?=?( volatile signed long long int &, signed long long int );
    503504unsigned long long int  ?=?( unsigned long long int &, unsigned long long int ), ?=?( volatile unsigned long long int &, unsigned long long int );
    504 zero_t                  ?=?( zero_t &, zero_t );
     505zero_t          ?=?( zero_t &, zero_t );
    505506one_t                   ?=?( one_t &, one_t );
    506507
     
    673674                        ?+=?( long double _Complex &, long double _Complex ), ?+=?( volatile long double _Complex &, long double _Complex ),
    674675                        ?-=?( long double _Complex &, long double _Complex ), ?-=?( volatile long double _Complex &, long double _Complex );
     676
     677
     678
    675679
    676680
     
    842846forall( dtype DT ) void ^?{}( const volatile  DT *         &);
    843847
    844 void ^?{}(                  void *          &);
    845 void ^?{}( const            void *          &);
    846 void ^?{}(         volatile void *          &);
    847 void ^?{}( const  volatile void *          &);
     848void    ^?{}(               void *          &);
     849void    ^?{}( const         void *          &);
     850void    ^?{}(      volatile void *          &);
     851void    ^?{}( const volatile void *         &);
    848852
    849853// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.