Changeset 92c0f81
- 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
- Files:
-
- 1 added
- 4 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} -
doc/user/Makefile
raf4903b r92c0f81 10 10 user \ 11 11 ../refrat/keywords \ 12 ../refrat/operidents \ 12 13 } 13 14 -
doc/user/user.tex
raf4903b r92c0f81 11 11 %% Created On : Wed Apr 6 14:53:29 2016 12 12 %% Last Modified By : Peter A. Buhr 13 %% Last Modified On : Sun Aug 6 08:52:34201714 %% Update Count : 303 413 %% Last Modified On : Sun Aug 6 10:24:21 2017 14 %% Update Count : 3036 15 15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 16 16 … … 3688 3688 3689 3689 \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} 3739 3692 \caption{Operator Identifiers} 3740 3693 \label{opids}
Note: See TracChangeset
for help on using the changeset viewer.