Returns the current node of the iteration. Must only be called after a successful move_next.
@parameter result |Signature
METHODS current RETURNING VALUE(result) TYPE ty_s_item.
| Library | Role | Version | License |
|---|---|---|---|
| Astro | Site framework | 6.3.1 | MIT |
| Astro React | React integration | 5.0.4 | MIT |
| Astro Sitemap | Sitemap generation | 3.7.2 | MIT |
| UI5 Web Components | UI primitives | 2.22.0 | Apache-2.0 |
| UI5 Web Components Fiori | Fiori shell components | 2.22.0 | Apache-2.0 |
| UI5 Web Components Icons | Icon set | 2.22.0 | Apache-2.0 |
| UI5 Web Components React | React wrappers | 2.22.0 | Apache-2.0 |
| React | UI runtime | 19.2.6 | MIT |
| React DOM | DOM renderer | 19.2.6 | MIT |
| Shiki | Syntax highlighting | 4.0.2 | MIT |
Defines sequential access to a collection of JSON nodes. Provides controlled forward-only iteration over the underlying sequence.
The enumerator maintains an internal cursor positioned:
Returns the current node of the iteration. Must only be called after a successful move_next.
@parameter result |METHODS current RETURNING VALUE(result) TYPE ty_s_item.Advances the internal cursor to the next node in the sequence.
@parameter result |METHODS move_next RETURNING VALUE(result) TYPE abap_bool.Resets the internal cursor to its initial position, before the first node of the sequence.
METHODS reset.Represents the current JSON node within the iteration context.
BEGIN OF ty_s_item,