gencpp/project/enums/EOperator.csv
Ed_ c5afede7b5 Reorganization of files, refactors, doc updates (WIP)
Removing the gen. namespace from the files for components, dependencies, and file_processors.
They are only necessary if the include directory is transparent, and in my case those are not.

Made a docs directory. I'm offloading information from the main readme to there along with additional informationn I end up elaborating on down the line.
Enum tables were moved to their own directory (project/enums).

Library will not compile for now. Major refactor occuring with parsing related components.
2023-07-29 05:52:06 -04:00

934 B

1InvalidINVALID
2Assign=
3Assign_Add+=
4Assign_Subtract-=
5Assign_Multiply*=
6Assign_Divide/=
7Assign_Modulo%=
8Assign_BAnd&=
9Assign_BOr|=
10Assign_BXOr^=
11Assign_LShift<<=
12Assign_RShift>>=
13Increment++
14Decrement--
15Unary_Plus+
16Unary_Minus-
17UnaryNot!
18Add+
19Subtract-
20Multiply*
21Divide/
22Modulo%
23BNot~
24BAnd&
25BOr|
26BXOr^
27LShift<<
28RShift>>
29LAnd&&
30LOr||
31LEqual==
32LNot!=
33Lesser<
34Greater>
35LesserEqual<=
36GreaterEqual>=
37Subscript[]
38Indirection*
39AddressOf&
40MemberOfPointer->
41PtrToMemOfPtr->*
42FunctionCall()
43Comma,