├── .clang-format ├── .gitignore ├── .lldbinit ├── CMakeLists.txt ├── README.md ├── images ├── dates-in-span.png ├── lldb-output.png ├── span-clion-2.png ├── span-clion-friendly.png ├── span-clion.png └── span-of-dates-friendly.png ├── include └── example │ ├── date.h │ ├── export.h │ └── span.h ├── src ├── date_example.cpp ├── span_example.cpp └── span_of_dates_example.cpp ├── test_scripts ├── run_date_example.lldb ├── run_span_example.lldb └── run_span_of_dates_example.lldb └── user_types └── helper.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/.gitignore -------------------------------------------------------------------------------- /.lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/.lldbinit -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/README.md -------------------------------------------------------------------------------- /images/dates-in-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/images/dates-in-span.png -------------------------------------------------------------------------------- /images/lldb-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/images/lldb-output.png -------------------------------------------------------------------------------- /images/span-clion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/images/span-clion-2.png -------------------------------------------------------------------------------- /images/span-clion-friendly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/images/span-clion-friendly.png -------------------------------------------------------------------------------- /images/span-clion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/images/span-clion.png -------------------------------------------------------------------------------- /images/span-of-dates-friendly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/images/span-of-dates-friendly.png -------------------------------------------------------------------------------- /include/example/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/include/example/date.h -------------------------------------------------------------------------------- /include/example/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/include/example/export.h -------------------------------------------------------------------------------- /include/example/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/include/example/span.h -------------------------------------------------------------------------------- /src/date_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/src/date_example.cpp -------------------------------------------------------------------------------- /src/span_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/src/span_example.cpp -------------------------------------------------------------------------------- /src/span_of_dates_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/src/span_of_dates_example.cpp -------------------------------------------------------------------------------- /test_scripts/run_date_example.lldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/test_scripts/run_date_example.lldb -------------------------------------------------------------------------------- /test_scripts/run_span_example.lldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/test_scripts/run_span_example.lldb -------------------------------------------------------------------------------- /test_scripts/run_span_of_dates_example.lldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/test_scripts/run_span_of_dates_example.lldb -------------------------------------------------------------------------------- /user_types/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinred/lldb_user_types/HEAD/user_types/helper.py --------------------------------------------------------------------------------