gitextract_7cvkifeh/ ├── .appveyor.yml ├── .azure-pipelines/ │ ├── azure-pipelines-linux-clang.yml │ ├── azure-pipelines-linux-gcc.yml │ ├── azure-pipelines-osx.yml │ └── unix-build.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── docs/ │ ├── Doxyfile │ ├── Makefile │ ├── environment.yml │ ├── make.bat │ └── source/ │ ├── _static/ │ │ └── main_stylesheet.css │ ├── api/ │ │ ├── axis_index.rst │ │ ├── coordinate_index.rst │ │ ├── variable_index.rst │ │ ├── xaxis.rst │ │ ├── xaxis_base.rst │ │ ├── xaxis_default.rst │ │ ├── xaxis_expression_leaf.rst │ │ ├── xaxis_function.rst │ │ ├── xaxis_variant.rst │ │ ├── xaxis_view.rst │ │ ├── xcoordinate.rst │ │ ├── xcoordinate_base.rst │ │ ├── xcoordinate_chain.rst │ │ ├── xcoordinate_expanded.rst │ │ ├── xcoordinate_view.rst │ │ ├── xdimension.rst │ │ ├── xexpand_dims_view.rst │ │ ├── xnamed_axis.rst │ │ └── xvariable_masked_view.rst │ ├── computation.rst │ ├── conf.py │ ├── data_structure.rst │ ├── getting_started.rst │ ├── index.rst │ ├── indexing.rst │ ├── installation.rst │ ├── xarray.rst │ └── xframe_summary_drawio.xml ├── environment-dev.yml ├── environment.yml ├── include/ │ └── xframe/ │ ├── xaxis.hpp │ ├── xaxis_base.hpp │ ├── xaxis_default.hpp │ ├── xaxis_expression_leaf.hpp │ ├── xaxis_function.hpp │ ├── xaxis_index_slice.hpp │ ├── xaxis_label_slice.hpp │ ├── xaxis_math.hpp │ ├── xaxis_meta.hpp │ ├── xaxis_scalar.hpp │ ├── xaxis_variant.hpp │ ├── xaxis_view.hpp │ ├── xcoordinate.hpp │ ├── xcoordinate_base.hpp │ ├── xcoordinate_chain.hpp │ ├── xcoordinate_expanded.hpp │ ├── xcoordinate_system.hpp │ ├── xcoordinate_view.hpp │ ├── xdimension.hpp │ ├── xdynamic_variable.hpp │ ├── xdynamic_variable_impl.hpp │ ├── xexpand_dims_view.hpp │ ├── xframe_config.hpp │ ├── xframe_expression.hpp │ ├── xframe_trace.hpp │ ├── xframe_utils.hpp │ ├── xio.hpp │ ├── xnamed_axis.hpp │ ├── xreindex_data.hpp │ ├── xreindex_view.hpp │ ├── xselecting.hpp │ ├── xsequence_view.hpp │ ├── xvariable.hpp │ ├── xvariable_assign.hpp │ ├── xvariable_base.hpp │ ├── xvariable_function.hpp │ ├── xvariable_masked_view.hpp │ ├── xvariable_math.hpp │ ├── xvariable_meta.hpp │ ├── xvariable_scalar.hpp │ ├── xvariable_variant.hpp │ ├── xvariable_view.hpp │ └── xvector_variant.hpp ├── notebooks/ │ └── xframe.ipynb ├── readthedocs.yml ├── test/ │ ├── CMakeLists.txt │ ├── copyGTest.cmake.in │ ├── downloadGTest.cmake.in │ ├── main.cpp │ ├── test_fixture.hpp │ ├── test_fixture_view.hpp │ ├── test_xaxis.cpp │ ├── test_xaxis_default.cpp │ ├── test_xaxis_function.cpp │ ├── test_xaxis_variant.cpp │ ├── test_xaxis_view.cpp │ ├── test_xcoordinate.cpp │ ├── test_xcoordinate_chain.cpp │ ├── test_xcoordinate_expanded.cpp │ ├── test_xcoordinate_view.cpp │ ├── test_xdimension.cpp │ ├── test_xdynamic_variable.cpp │ ├── test_xexpand_dims_view.cpp │ ├── test_xframe_utils.cpp │ ├── test_xnamed_axis.cpp │ ├── test_xreindex_view.cpp │ ├── test_xsequence_view.cpp │ ├── test_xvariable.cpp │ ├── test_xvariable_assign.cpp │ ├── test_xvariable_function.cpp │ ├── test_xvariable_masked_view.cpp │ ├── test_xvariable_math.cpp │ ├── test_xvariable_noalias.cpp │ ├── test_xvariable_scalar.cpp │ ├── test_xvariable_view.cpp │ ├── test_xvariable_view_assign.cpp │ └── test_xvector_variant.cpp ├── xframe.pc.in └── xframeConfig.cmake.in