Implement numbering of array elements #585
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Array Indices Display Configuration Feature
Description
This PR adds functionality to the Randomness plugin to allow users to configure how array indices are displayed when generating arrays of schemes or templates. This pull request solves the problem related to issue #582. Users can now:
Implementation Details
New Properties in ArrayDecorator
showIndices: Boolean to control if indices are displayed (default: false)indicesFormat: String template for formatting indices (default: "{index}: {value}")useTupleIndices: Boolean to enable tuple-style indices (default: false)UI Changes in ArrayDecoratorEditor
Localization
Example Outputs
With this feature, users can generate arrays in different formats, like:
["foo", "bar", "quz"][0: "foo", 1: "bar", 2: "quz"]["0": "foo", "1": "bar", "2": "quz"][(0,0): "foo", (0,1): "bar", (0,2): "quz"]{index}={value}):[0="foo", 1="bar", 2="quz"]Testing