├── .editorconfig ├── .github ├── FUNDING.yml └── pull_request_template.md ├── .gitignore ├── .vimrc ├── API └── Z │ ├── classes │ ├── Empty.hpp │ ├── Functor.hpp │ ├── InitializerList.hpp │ ├── Iterator.hpp │ ├── MemberFunction.hpp │ ├── NaT.hpp │ ├── ObjectMemberFunction.hpp │ ├── ObjectSelector.hpp │ ├── OpaqueMemberFunctionPointer.hpp │ ├── Pair.hpp │ ├── Range.hpp │ ├── Rectangle.hpp │ ├── Reference.hpp │ ├── Selector.hpp │ ├── Shared.hpp │ ├── SizedString.hpp │ ├── Span.hpp │ ├── Strid.hpp │ ├── StringView.hpp │ ├── TripleBuffer.hpp │ ├── Tuple.hpp │ ├── XY.hpp │ └── XYZ.hpp │ ├── constants │ ├── boolean.h │ ├── build.hpp │ ├── numbers.h │ └── pointer.h │ ├── formats │ ├── archive │ │ └── TAR.h │ ├── character_set │ │ ├── ASCII.h │ │ ├── DOS_CP437.h │ │ ├── DOS_CP737.h │ │ ├── DOS_CP775.h │ │ ├── DOS_CP850.h │ │ ├── DOS_CP852.h │ │ ├── DOS_CP855.h │ │ ├── DOS_CP857.h │ │ ├── DOS_CP858.h │ │ ├── DOS_CP860.h │ │ ├── DOS_CP861.h │ │ ├── DOS_CP862.h │ │ ├── DOS_CP863.h │ │ ├── DOS_CP864.h │ │ ├── DOS_CP865.h │ │ ├── DOS_CP866.h │ │ ├── DOS_CP869.h │ │ ├── DOS_CP872.h │ │ └── DOS_CP874.h │ ├── data_model │ │ ├── I16LP32.h │ │ ├── ILP32.h │ │ ├── ILP64.h │ │ ├── IP16L32.h │ │ ├── LLP64.h │ │ ├── LP32.h │ │ ├── LP64.h │ │ └── SILP64.h │ ├── floating-point │ │ ├── Brain_Floating-Point.h │ │ ├── IBM.h │ │ ├── IEEE_754.h │ │ └── x87.h │ ├── keymap │ │ ├── Mac_OS.h │ │ ├── USB.h │ │ └── Z.h │ ├── recording │ │ └── machine │ │ │ └── computer │ │ │ └── ZX_Spectrum │ │ │ └── RZX.h │ ├── snapshot │ │ └── machine │ │ │ └── computer │ │ │ └── ZX_Spectrum │ │ │ ├── +D.h │ │ │ ├── ACH.h │ │ │ ├── FRZ.h │ │ │ ├── PRG.h │ │ │ ├── SEM.h │ │ │ ├── SIT.h │ │ │ ├── SLT.h │ │ │ ├── SNA.h │ │ │ ├── SNP.h │ │ │ ├── SNX.h │ │ │ ├── SP.h │ │ │ ├── Z80.h │ │ │ ├── ZLS.h │ │ │ ├── ZX-State.h │ │ │ ├── ZX.h │ │ │ ├── ZX82.h │ │ │ └── ZXS.h │ └── storage_medium_image │ │ ├── NES_Game_Pak │ │ ├── TNES.h │ │ ├── UNIF.h │ │ └── iNES.h │ │ └── audio │ │ ├── TZX.h │ │ └── Warajevo_TAP.h │ ├── functions │ ├── Objective-C.hpp │ ├── atomic.h │ ├── bitwise.h │ ├── buffer.h │ ├── calendar.h │ ├── casting.hpp │ ├── character.h │ ├── class.hpp │ ├── hash.hpp │ ├── math.h │ ├── math.hpp │ ├── type.hpp │ └── unevaluated.hpp │ ├── hardware │ ├── ISA │ │ ├── 6502.h │ │ └── RISC-V.h │ ├── bus │ │ └── USB.h │ └── machine │ │ └── computer │ │ └── ZX_Spectrum.h │ ├── inspection │ ├── C++.h │ ├── C++ │ │ └── modules │ │ │ ├── C++03.h │ │ │ ├── C++11.h │ │ │ ├── C++14.h │ │ │ ├── C++17.h │ │ │ ├── C++20.h │ │ │ ├── C++23.h │ │ │ └── C++98.h │ ├── C.h │ ├── C │ │ └── modules │ │ │ ├── C11.h │ │ │ ├── C23.h │ │ │ ├── C78.h │ │ │ ├── C89.h │ │ │ ├── C95.h │ │ │ └── C99.h │ ├── ISA.h │ ├── ISA │ │ └── detection.h │ ├── OS.h │ ├── OS │ │ └── detection.h │ ├── Z.h │ ├── character_set.h │ ├── compiler.h │ ├── compiler │ │ ├── completion.h │ │ ├── detection.h │ │ └── modules │ │ │ ├── Clang.h │ │ │ ├── GCC.h │ │ │ ├── MSVC.h │ │ │ ├── TinyCC.h │ │ │ ├── cc65.h │ │ │ ├── generic.h │ │ │ └── template.h │ ├── data_model.h │ ├── data_model │ │ ├── deduction.h │ │ └── detection.h │ ├── floating-point.h │ ├── floating-point │ │ └── completion.h │ ├── language.h │ ├── platform.h │ └── platform │ │ └── detection.h │ ├── keys │ ├── C++.h │ ├── C.h │ ├── ISA.h │ ├── OS.h │ ├── compiler.h │ ├── data_model.h │ ├── endianness.h │ ├── fundamental.h │ ├── language.h │ ├── number.h │ ├── order.h │ └── platform.h │ ├── macros │ ├── T.h │ ├── array.h │ ├── bit-field.h │ ├── bitwise.h │ ├── calendar.h │ ├── casting.h │ ├── character.h │ ├── hash.h │ ├── iteration.h │ ├── language.h │ ├── language.hpp │ ├── math.h │ ├── structure.h │ ├── token.h │ ├── variadic.h │ ├── variadic_control.h │ ├── variadic_pasting.h │ └── version.h │ ├── protocols │ └── network │ │ └── 7 │ │ └── HTTP.h │ ├── traits │ ├── TypeCount.hpp │ ├── TypeList.hpp │ ├── ValueList.hpp │ ├── casting.hpp │ ├── constants.hpp │ ├── control.hpp │ ├── math.hpp │ └── type.hpp │ ├── types │ ├── bitwise.h │ ├── bitwise.hpp │ ├── buffer.h │ ├── integral.h │ ├── integral.hpp │ ├── pointer.hpp │ ├── real.h │ └── real.hpp │ └── version.h ├── AUTHORS ├── CMake ├── FindSphinx.cmake └── FindZeta.cmake ├── CMakeLists.txt ├── COPYING ├── COPYING.LESSER ├── README.md ├── documentation ├── CMakeLists.txt ├── conf.py ├── index.rst ├── installation-from-source-code.rst ├── integration.rst ├── license.rst └── naming-convention.rst └── support ├── Zeta.pc.in └── ZetaConfig.cmake.in /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | .DS_Store 3 | Thumbs.db 4 | /build/ 5 | /CMakeLists.txt.user 6 | -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/.vimrc -------------------------------------------------------------------------------- /API/Z/classes/Empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Empty.hpp -------------------------------------------------------------------------------- /API/Z/classes/Functor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Functor.hpp -------------------------------------------------------------------------------- /API/Z/classes/InitializerList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/InitializerList.hpp -------------------------------------------------------------------------------- /API/Z/classes/Iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Iterator.hpp -------------------------------------------------------------------------------- /API/Z/classes/MemberFunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/MemberFunction.hpp -------------------------------------------------------------------------------- /API/Z/classes/NaT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/NaT.hpp -------------------------------------------------------------------------------- /API/Z/classes/ObjectMemberFunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/ObjectMemberFunction.hpp -------------------------------------------------------------------------------- /API/Z/classes/ObjectSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/ObjectSelector.hpp -------------------------------------------------------------------------------- /API/Z/classes/OpaqueMemberFunctionPointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/OpaqueMemberFunctionPointer.hpp -------------------------------------------------------------------------------- /API/Z/classes/Pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Pair.hpp -------------------------------------------------------------------------------- /API/Z/classes/Range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Range.hpp -------------------------------------------------------------------------------- /API/Z/classes/Rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Rectangle.hpp -------------------------------------------------------------------------------- /API/Z/classes/Reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Reference.hpp -------------------------------------------------------------------------------- /API/Z/classes/Selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Selector.hpp -------------------------------------------------------------------------------- /API/Z/classes/Shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Shared.hpp -------------------------------------------------------------------------------- /API/Z/classes/SizedString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/SizedString.hpp -------------------------------------------------------------------------------- /API/Z/classes/Span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Span.hpp -------------------------------------------------------------------------------- /API/Z/classes/Strid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Strid.hpp -------------------------------------------------------------------------------- /API/Z/classes/StringView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/StringView.hpp -------------------------------------------------------------------------------- /API/Z/classes/TripleBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/TripleBuffer.hpp -------------------------------------------------------------------------------- /API/Z/classes/Tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/Tuple.hpp -------------------------------------------------------------------------------- /API/Z/classes/XY.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/XY.hpp -------------------------------------------------------------------------------- /API/Z/classes/XYZ.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/classes/XYZ.hpp -------------------------------------------------------------------------------- /API/Z/constants/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/constants/boolean.h -------------------------------------------------------------------------------- /API/Z/constants/build.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/constants/build.hpp -------------------------------------------------------------------------------- /API/Z/constants/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/constants/numbers.h -------------------------------------------------------------------------------- /API/Z/constants/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/constants/pointer.h -------------------------------------------------------------------------------- /API/Z/formats/archive/TAR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/archive/TAR.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/ASCII.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP437.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP737.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP737.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP775.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP775.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP850.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP852.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP852.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP855.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP857.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP857.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP858.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP858.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP860.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP860.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP861.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP861.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP862.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP862.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP863.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP863.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP864.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP864.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP865.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP866.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP866.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP869.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP869.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP872.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP872.h -------------------------------------------------------------------------------- /API/Z/formats/character_set/DOS_CP874.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/character_set/DOS_CP874.h -------------------------------------------------------------------------------- /API/Z/formats/data_model/I16LP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/data_model/I16LP32.h -------------------------------------------------------------------------------- /API/Z/formats/data_model/ILP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/data_model/ILP32.h -------------------------------------------------------------------------------- /API/Z/formats/data_model/ILP64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/data_model/ILP64.h -------------------------------------------------------------------------------- /API/Z/formats/data_model/IP16L32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/data_model/IP16L32.h -------------------------------------------------------------------------------- /API/Z/formats/data_model/LLP64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/data_model/LLP64.h -------------------------------------------------------------------------------- /API/Z/formats/data_model/LP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/data_model/LP32.h -------------------------------------------------------------------------------- /API/Z/formats/data_model/LP64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/data_model/LP64.h -------------------------------------------------------------------------------- /API/Z/formats/data_model/SILP64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/data_model/SILP64.h -------------------------------------------------------------------------------- /API/Z/formats/floating-point/Brain_Floating-Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/floating-point/Brain_Floating-Point.h -------------------------------------------------------------------------------- /API/Z/formats/floating-point/IBM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/floating-point/IBM.h -------------------------------------------------------------------------------- /API/Z/formats/floating-point/IEEE_754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/floating-point/IEEE_754.h -------------------------------------------------------------------------------- /API/Z/formats/floating-point/x87.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/floating-point/x87.h -------------------------------------------------------------------------------- /API/Z/formats/keymap/Mac_OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/keymap/Mac_OS.h -------------------------------------------------------------------------------- /API/Z/formats/keymap/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/keymap/USB.h -------------------------------------------------------------------------------- /API/Z/formats/keymap/Z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/keymap/Z.h -------------------------------------------------------------------------------- /API/Z/formats/recording/machine/computer/ZX_Spectrum/RZX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/recording/machine/computer/ZX_Spectrum/RZX.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/+D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/+D.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ACH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ACH.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/FRZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/FRZ.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/PRG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/PRG.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SEM.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SIT.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SLT.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SNA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SNA.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SNP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SNP.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SNX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SNX.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/SP.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/Z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/Z80.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZLS.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZX-State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZX-State.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZX.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZX82.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZX82.h -------------------------------------------------------------------------------- /API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZXS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/snapshot/machine/computer/ZX_Spectrum/ZXS.h -------------------------------------------------------------------------------- /API/Z/formats/storage_medium_image/NES_Game_Pak/TNES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/storage_medium_image/NES_Game_Pak/TNES.h -------------------------------------------------------------------------------- /API/Z/formats/storage_medium_image/NES_Game_Pak/UNIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/storage_medium_image/NES_Game_Pak/UNIF.h -------------------------------------------------------------------------------- /API/Z/formats/storage_medium_image/NES_Game_Pak/iNES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/storage_medium_image/NES_Game_Pak/iNES.h -------------------------------------------------------------------------------- /API/Z/formats/storage_medium_image/audio/TZX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/storage_medium_image/audio/TZX.h -------------------------------------------------------------------------------- /API/Z/formats/storage_medium_image/audio/Warajevo_TAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/formats/storage_medium_image/audio/Warajevo_TAP.h -------------------------------------------------------------------------------- /API/Z/functions/Objective-C.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/Objective-C.hpp -------------------------------------------------------------------------------- /API/Z/functions/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/atomic.h -------------------------------------------------------------------------------- /API/Z/functions/bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/bitwise.h -------------------------------------------------------------------------------- /API/Z/functions/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/buffer.h -------------------------------------------------------------------------------- /API/Z/functions/calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/calendar.h -------------------------------------------------------------------------------- /API/Z/functions/casting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/casting.hpp -------------------------------------------------------------------------------- /API/Z/functions/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/character.h -------------------------------------------------------------------------------- /API/Z/functions/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/class.hpp -------------------------------------------------------------------------------- /API/Z/functions/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/hash.hpp -------------------------------------------------------------------------------- /API/Z/functions/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/math.h -------------------------------------------------------------------------------- /API/Z/functions/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/math.hpp -------------------------------------------------------------------------------- /API/Z/functions/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/type.hpp -------------------------------------------------------------------------------- /API/Z/functions/unevaluated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/functions/unevaluated.hpp -------------------------------------------------------------------------------- /API/Z/hardware/ISA/6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/hardware/ISA/6502.h -------------------------------------------------------------------------------- /API/Z/hardware/ISA/RISC-V.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/hardware/ISA/RISC-V.h -------------------------------------------------------------------------------- /API/Z/hardware/bus/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/hardware/bus/USB.h -------------------------------------------------------------------------------- /API/Z/hardware/machine/computer/ZX_Spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/hardware/machine/computer/ZX_Spectrum.h -------------------------------------------------------------------------------- /API/Z/inspection/C++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C++.h -------------------------------------------------------------------------------- /API/Z/inspection/C++/modules/C++03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C++/modules/C++03.h -------------------------------------------------------------------------------- /API/Z/inspection/C++/modules/C++11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C++/modules/C++11.h -------------------------------------------------------------------------------- /API/Z/inspection/C++/modules/C++14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C++/modules/C++14.h -------------------------------------------------------------------------------- /API/Z/inspection/C++/modules/C++17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C++/modules/C++17.h -------------------------------------------------------------------------------- /API/Z/inspection/C++/modules/C++20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C++/modules/C++20.h -------------------------------------------------------------------------------- /API/Z/inspection/C++/modules/C++23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C++/modules/C++23.h -------------------------------------------------------------------------------- /API/Z/inspection/C++/modules/C++98.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C++/modules/C++98.h -------------------------------------------------------------------------------- /API/Z/inspection/C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C.h -------------------------------------------------------------------------------- /API/Z/inspection/C/modules/C11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C/modules/C11.h -------------------------------------------------------------------------------- /API/Z/inspection/C/modules/C23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C/modules/C23.h -------------------------------------------------------------------------------- /API/Z/inspection/C/modules/C78.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C/modules/C78.h -------------------------------------------------------------------------------- /API/Z/inspection/C/modules/C89.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C/modules/C89.h -------------------------------------------------------------------------------- /API/Z/inspection/C/modules/C95.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C/modules/C95.h -------------------------------------------------------------------------------- /API/Z/inspection/C/modules/C99.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/C/modules/C99.h -------------------------------------------------------------------------------- /API/Z/inspection/ISA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/ISA.h -------------------------------------------------------------------------------- /API/Z/inspection/ISA/detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/ISA/detection.h -------------------------------------------------------------------------------- /API/Z/inspection/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/OS.h -------------------------------------------------------------------------------- /API/Z/inspection/OS/detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/OS/detection.h -------------------------------------------------------------------------------- /API/Z/inspection/Z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/Z.h -------------------------------------------------------------------------------- /API/Z/inspection/character_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/character_set.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/completion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/completion.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/detection.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/modules/Clang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/modules/Clang.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/modules/GCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/modules/GCC.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/modules/MSVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/modules/MSVC.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/modules/TinyCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/modules/TinyCC.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/modules/cc65.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/modules/cc65.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/modules/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/modules/generic.h -------------------------------------------------------------------------------- /API/Z/inspection/compiler/modules/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/compiler/modules/template.h -------------------------------------------------------------------------------- /API/Z/inspection/data_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/data_model.h -------------------------------------------------------------------------------- /API/Z/inspection/data_model/deduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/data_model/deduction.h -------------------------------------------------------------------------------- /API/Z/inspection/data_model/detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/data_model/detection.h -------------------------------------------------------------------------------- /API/Z/inspection/floating-point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/floating-point.h -------------------------------------------------------------------------------- /API/Z/inspection/floating-point/completion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/floating-point/completion.h -------------------------------------------------------------------------------- /API/Z/inspection/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/language.h -------------------------------------------------------------------------------- /API/Z/inspection/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/platform.h -------------------------------------------------------------------------------- /API/Z/inspection/platform/detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/inspection/platform/detection.h -------------------------------------------------------------------------------- /API/Z/keys/C++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/C++.h -------------------------------------------------------------------------------- /API/Z/keys/C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/C.h -------------------------------------------------------------------------------- /API/Z/keys/ISA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/ISA.h -------------------------------------------------------------------------------- /API/Z/keys/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/OS.h -------------------------------------------------------------------------------- /API/Z/keys/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/compiler.h -------------------------------------------------------------------------------- /API/Z/keys/data_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/data_model.h -------------------------------------------------------------------------------- /API/Z/keys/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/endianness.h -------------------------------------------------------------------------------- /API/Z/keys/fundamental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/fundamental.h -------------------------------------------------------------------------------- /API/Z/keys/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/language.h -------------------------------------------------------------------------------- /API/Z/keys/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/number.h -------------------------------------------------------------------------------- /API/Z/keys/order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/order.h -------------------------------------------------------------------------------- /API/Z/keys/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/keys/platform.h -------------------------------------------------------------------------------- /API/Z/macros/T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/T.h -------------------------------------------------------------------------------- /API/Z/macros/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/array.h -------------------------------------------------------------------------------- /API/Z/macros/bit-field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/bit-field.h -------------------------------------------------------------------------------- /API/Z/macros/bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/bitwise.h -------------------------------------------------------------------------------- /API/Z/macros/calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/calendar.h -------------------------------------------------------------------------------- /API/Z/macros/casting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/casting.h -------------------------------------------------------------------------------- /API/Z/macros/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/character.h -------------------------------------------------------------------------------- /API/Z/macros/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/hash.h -------------------------------------------------------------------------------- /API/Z/macros/iteration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/iteration.h -------------------------------------------------------------------------------- /API/Z/macros/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/language.h -------------------------------------------------------------------------------- /API/Z/macros/language.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/language.hpp -------------------------------------------------------------------------------- /API/Z/macros/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/math.h -------------------------------------------------------------------------------- /API/Z/macros/structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/structure.h -------------------------------------------------------------------------------- /API/Z/macros/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/token.h -------------------------------------------------------------------------------- /API/Z/macros/variadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/variadic.h -------------------------------------------------------------------------------- /API/Z/macros/variadic_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/variadic_control.h -------------------------------------------------------------------------------- /API/Z/macros/variadic_pasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/variadic_pasting.h -------------------------------------------------------------------------------- /API/Z/macros/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/macros/version.h -------------------------------------------------------------------------------- /API/Z/protocols/network/7/HTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/protocols/network/7/HTTP.h -------------------------------------------------------------------------------- /API/Z/traits/TypeCount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/traits/TypeCount.hpp -------------------------------------------------------------------------------- /API/Z/traits/TypeList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/traits/TypeList.hpp -------------------------------------------------------------------------------- /API/Z/traits/ValueList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/traits/ValueList.hpp -------------------------------------------------------------------------------- /API/Z/traits/casting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/traits/casting.hpp -------------------------------------------------------------------------------- /API/Z/traits/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/traits/constants.hpp -------------------------------------------------------------------------------- /API/Z/traits/control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/traits/control.hpp -------------------------------------------------------------------------------- /API/Z/traits/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/traits/math.hpp -------------------------------------------------------------------------------- /API/Z/traits/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/traits/type.hpp -------------------------------------------------------------------------------- /API/Z/types/bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/types/bitwise.h -------------------------------------------------------------------------------- /API/Z/types/bitwise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/types/bitwise.hpp -------------------------------------------------------------------------------- /API/Z/types/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/types/buffer.h -------------------------------------------------------------------------------- /API/Z/types/integral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/types/integral.h -------------------------------------------------------------------------------- /API/Z/types/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/types/integral.hpp -------------------------------------------------------------------------------- /API/Z/types/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/types/pointer.hpp -------------------------------------------------------------------------------- /API/Z/types/real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/types/real.h -------------------------------------------------------------------------------- /API/Z/types/real.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/types/real.hpp -------------------------------------------------------------------------------- /API/Z/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/API/Z/version.h -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/CMake/FindSphinx.cmake -------------------------------------------------------------------------------- /CMake/FindZeta.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/CMake/FindZeta.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/README.md -------------------------------------------------------------------------------- /documentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/documentation/CMakeLists.txt -------------------------------------------------------------------------------- /documentation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/documentation/conf.py -------------------------------------------------------------------------------- /documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/documentation/index.rst -------------------------------------------------------------------------------- /documentation/installation-from-source-code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/documentation/installation-from-source-code.rst -------------------------------------------------------------------------------- /documentation/integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/documentation/integration.rst -------------------------------------------------------------------------------- /documentation/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/documentation/license.rst -------------------------------------------------------------------------------- /documentation/naming-convention.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/documentation/naming-convention.rst -------------------------------------------------------------------------------- /support/Zeta.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/support/Zeta.pc.in -------------------------------------------------------------------------------- /support/ZetaConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Zeta/HEAD/support/ZetaConfig.cmake.in --------------------------------------------------------------------------------