added hawk_rtx_scalearrval()

This commit is contained in:
2025-07-06 16:29:52 +09:00
parent acd32601a8
commit 45a22eb5a4
6 changed files with 86 additions and 28 deletions

View File

@ -1111,6 +1111,7 @@ public:
hawk_ooi_t getArrayedSize () const; // same value as hawk::size() for an array
hawk_ooi_t getArrayedLength () const; // same value as hawk::length() for an array
hawk_ooi_t getArrayedCapa () const;
bool isArrayed () const;
int getArrayed (
@ -1140,6 +1141,10 @@ public:
int setIndexedMbs (const Index& idx, const hawk_bch_t* str);
int setIndexedMbs (Run* r, const Index& idx, const hawk_bch_t* str);
hawk_ooi_t getIndexedSize () const; // same value as hawk::size() for a map
hawk_ooi_t getIndexedLength () const; // same value as hawk::length() for a map
hawk_ooi_t getIndexedCapa () const;
///
/// The isIndexed() function determines if a value is a map.
/// \return true if indexed, false if not.