Changeset 92c0f81


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
Files:
1 added
4 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}
  • doc/user/Makefile

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

    raf4903b r92c0f81  
    1111%% Created On       : Wed Apr  6 14:53:29 2016
    1212%% Last Modified By : Peter A. Buhr
    13 %% Last Modified On : Sun Aug  6 08:52:34 2017
    14 %% Update Count     : 3034
     13%% Last Modified On : Sun Aug  6 10:24:21 2017
     14%% Update Count     : 3036
    1515%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    1616
     
    36883688
    36893689\begin{table}[hbt]
    3690 \hfil
    3691 \begin{tabular}[t]{ll}
    3692 %identifier & operation \\ \hline
    3693 ©?[?]© & subscripting \impl{?[?]}\\
    3694 ©?()© & function call \impl{?()}\\
    3695 ©?++© & postfix increment \impl{?++}\\
    3696 ©?--© & postfix decrement \impl{?--}\\
    3697 ©++?© & prefix increment \impl{++?}\\
    3698 ©--?© & prefix decrement \impl{--?}\\
    3699 ©*?© & dereference \impl{*?}\\
    3700 ©+?© & unary plus \impl{+?}\\
    3701 ©-?© & arithmetic negation \impl{-?}\\
    3702 ©~?© & bitwise negation \impl{~?}\\
    3703 ©!?© & logical complement \impl{"!?}\\
    3704 ©?*?© & multiplication \impl{?*?}\\
    3705 ©?/?© & division \impl{?/?}\\
    3706 \end{tabular}\hfil
    3707 \begin{tabular}[t]{ll}
    3708 %identifier & operation \\ \hline
    3709 ©?%?© & remainder \impl{?%?}\\
    3710 ©?+?© & addition \impl{?+?}\\
    3711 ©?-?© & subtraction \impl{?-?}\\
    3712 ©?<<?© & left shift \impl{?<<?}\\
    3713 ©?>>?© & right shift \impl{?>>?}\\
    3714 ©?<?© & less than \impl{?<?}\\
    3715 ©?<=?© & less than or equal \impl{?<=?}\\
    3716 ©?>=?© & greater than or equal \impl{?>=?}\\
    3717 ©?>?© & greater than \impl{?>?}\\
    3718 ©?==?© & equality \impl{?==?}\\
    3719 ©?!=?© & inequality \impl{?"!=?}\\
    3720 ©?&?© & bitwise AND \impl{?&?}\\
    3721 \end{tabular}\hfil
    3722 \begin{tabular}[t]{ll}
    3723 %identifier & operation \\ \hline
    3724 ©?^?© & exclusive OR \impl{?^?}\\
    3725 ©?|?© & inclusive OR \impl{?"|?}\\
    3726 ©?=?© & simple assignment \impl{?=?}\\
    3727 ©?*=?© & multiplication assignment \impl{?*=?}\\
    3728 ©?/=?© & division assignment \impl{?/=?}\\
    3729 ©?%=?© & remainder assignment \impl{?%=?}\\
    3730 ©?+=?© & addition assignment \impl{?+=?}\\
    3731 ©?-=?© & subtraction assignment \impl{?-=?}\\
    3732 ©?<<=?© & left-shift assignment \impl{?<<=?}\\
    3733 ©?>>=?© & right-shift assignment \impl{?>>=?}\\
    3734 ©?&=?© & bitwise AND assignment \impl{?&=?}\\
    3735 ©?^=?© & exclusive OR assignment \impl{?^=?}\\
    3736 ©?|=?© & inclusive OR assignment \impl{?"|=?}\\
    3737 \end{tabular}
    3738 \hfil
     3690\centering
     3691\input{../refrat/operidents}
    37393692\caption{Operator Identifiers}
    37403693\label{opids}
Note: See TracChangeset for help on using the changeset viewer.