Changeset 92c0f81 for doc/refrat
- Timestamp:
- Aug 6, 2017, 8:41:30 PM (7 years ago)
- 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
- Location:
- doc/refrat
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/refrat/Makefile
raf4903b r92c0f81 10 10 refrat \ 11 11 keywords \ 12 operidents \ 12 13 } 13 14 -
doc/refrat/refrat.tex
raf4903b r92c0f81 11 11 %% Created On : Wed Apr 6 14:52:25 2016 12 12 %% Last Modified By : Peter A. Buhr 13 %% Last Modified On : Sun Aug 6 08:53:08201714 %% Update Count : 9913 %% Last Modified On : Sun Aug 6 10:25:31 2017 14 %% Update Count : 105 15 15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 16 16 … … 478 478 479 479 \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} 529 482 \caption{Operator Identifiers} 530 483 \label{opids}
Note: See TracChangeset
for help on using the changeset viewer.