移動先: 概要 戻り値 MEL 例.
string[] stringArrayRemoveDuplicates(string[] $list)
なし
string $list[] = { "d", "b", "c", "c", "a", "a", "b" }; string $shorterList[] = stringArrayRemoveDuplicates($list); // Result : { d, b, c, a } //