Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    r9d362a0 r17a1b21  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Dec 24 18:33:40 2018
    13 // Update Count     : 589
     12// Last Modified On : Mon Mar  4 20:57:24 2019
     13// Update Count     : 593
    1414//
    1515
     
    2727
    2828forall( dtype ostype | ostream( ostype ) ) {
     29        ostype & ?|?( ostype & os, zero_t ) {
     30                if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
     31                fmt( os, "%d", 0n );
     32                return os;
     33        } // ?|?
     34        void ?|?( ostype & os, zero_t z ) {
     35                (ostype &)(os | z); nl( os );
     36        } // ?|?
     37
     38        ostype & ?|?( ostype & os, one_t ) {
     39                if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
     40                fmt( os, "%d", 1n );
     41                return os;
     42        } // ?|?
     43        void ?|?( ostype & os, one_t o ) {
     44                (ostype &)(os | o); nl( os );
     45        } // ?|?
     46
    2947        ostype & ?|?( ostype & os, bool b ) {
    3048                if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
Note: See TracChangeset for help on using the changeset viewer.