EntityFormat
Alias:EntityFormat
, Format
Output:StringStream
Formats an entity or an array of entities as a string
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
Entity | entity or array<entity> | ✔ | 1 | The Entity to Format |
Examples​
Example 1​
SCL​
EntityFormat (a:1, b:2)
Expected Output​
( 'a': 1 'b': 2 )
Example 2​
SCL​
EntityFormat [(a:1, b:2), (a:3, b:4)]
Expected Output​
[ ( 'a': 1 'b': 2 ), ( 'a': 3 'b': 4 ) ]