Changeset 92c0f81 for doc/refrat


Ignore:
Timestamp:
Aug 6, 2017, 8:41:30 PM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
56e49b0
Parents:
af4903b
Message:

share operator identifiers

Location:
doc/refrat
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • doc/refrat/Makefile

    raf4903b r92c0f81  
    1010refrat \
    1111keywords \
     12operidents \
    1213}
    1314
  • doc/refrat/refrat.tex

    raf4903b r92c0f81  
    1111%% Created On       : Wed Apr  6 14:52:25 2016
    1212%% Last Modified By : Peter A. Buhr
    13 %% Last Modified On : Sun Aug  6 08:53:08 2017
    14 %% Update Count     : 99
     13%% Last Modified On : Sun Aug  6 10:25:31 2017
     14%% Update Count     : 105
    1515%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    1616
     
    478478
    479479\begin{table}[hbt]
    480 \hfil
    481 \begin{tabular}[t]{ll}
    482 %identifier & operation \\ \hline
    483 ©?[?]© & subscripting \impl{?[?]}\\
    484 ©?()© & function call \impl{?()}\\
    485 ©?++© & postfix increment \impl{?++}\\
    486 ©?--© & postfix decrement \impl{?--}\\
    487 ©++?© & prefix increment \impl{++?}\\
    488 ©--?© & prefix decrement \impl{--?}\\
    489 ©*?© & dereference \impl{*?}\\
    490 ©+?© & unary plus \impl{+?}\\
    491 ©-?© & arithmetic negation \impl{-?}\\
    492 ©~?© & bitwise negation \impl{~?}\\
    493 ©!?© & logical complement \impl{"!?}\\
    494 ©?*?© & multiplication \impl{?*?}\\
    495 ©?/?© & division \impl{?/?}\\
    496 \end{tabular}\hfil
    497 \begin{tabular}[t]{ll}
    498 %identifier & operation \\ \hline
    499 ©?%?© & remainder \impl{?%?}\\
    500 ©?+?© & addition \impl{?+?}\\
    501 ©?-?© & subtraction \impl{?-?}\\
    502 ©?<<?© & left shift \impl{?<<?}\\
    503 ©?>>?© & right shift \impl{?>>?}\\
    504 ©?<?© & less than \impl{?<?}\\
    505 ©?<=?© & less than or equal \impl{?<=?}\\
    506 ©?>=?© & greater than or equal \impl{?>=?}\\
    507 ©?>?© & greater than \impl{?>?}\\
    508 ©?==?© & equality \impl{?==?}\\
    509 ©?!=?© & inequality \impl{?"!=?}\\
    510 ©?&?© & bitwise AND \impl{?&?}\\
    511 \end{tabular}\hfil
    512 \begin{tabular}[t]{ll}
    513 %identifier & operation \\ \hline
    514 ©?^?© & exclusive OR \impl{?^?}\\
    515 ©?|?© & inclusive OR \impl{?"|?}\\
    516 ©?=?© & simple assignment \impl{?=?}\\
    517 ©?*=?© & multiplication assignment \impl{?*=?}\\
    518 ©?/=?© & division assignment \impl{?/=?}\\
    519 ©?%=?© & remainder assignment \impl{?%=?}\\
    520 ©?+=?© & addition assignment \impl{?+=?}\\
    521 ©?-=?© & subtraction assignment \impl{?-=?}\\
    522 ©?<<=?© & left-shift assignment \impl{?<<=?}\\
    523 ©?>>=?© & right-shift assignment \impl{?>>=?}\\
    524 ©?&=?© & bitwise AND assignment \impl{?&=?}\\
    525 ©?^=?© & exclusive OR assignment \impl{?^=?}\\
    526 ©?|=?© & inclusive OR assignment \impl{?"|=?}\\
    527 \end{tabular}
    528 \hfil
     480\centering
     481\input{operidents}
    529482\caption{Operator Identifiers}
    530483\label{opids}
Note: See TracChangeset for help on using the changeset viewer.