Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
public boolean removeValueAt(StructuredValue object, String featureName, Integer removeAt) {
...
}


The following code fragment shows how to remove values from an object, e.g., System.p1, through ALH API.

Code Block
languagetext
print(System);							// System.p1 = [10, 20, 30]
ALH.removeValueAt(System,”p1”,3);       // System.p1 = [10, 20]
ALH.removeValue(System,”p1”,20);        // System.p1 = [10]