.. _program_listing_file_oti_semisparse_array_structures.h: Program Listing for File semisparse/array/structures.h ====================================================== |exhale_lsh| :ref:`Return to documentation for file ` (``oti/semisparse/array/structures.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef OTI_SEMISPARSE_ARRAY_STRUCTURES_H #define OTI_SEMISPARSE_ARRAY_STRUCTURES_H // ---------------------------------------------------------------------------------------------------- // -------------------------------------- STRUCTURES -------------------------------------- // ---------------------------------------------------------------------------------------------------- // Structure for array of sparse OTI numbers (2D) typedef struct { semiotin_t* p_data; uint64_t nrows; uint64_t ncols; uint64_t size; flag_t flag; } arrsso_t; // ---------------------------------------------------------------------------------------------------- // ------------------------------------- END STRUCTURES --------------------------------------- // ---------------------------------------------------------------------------------------------------- #endif