public static Permutation operator *(
Permutation a,
Permutation b
)Public Shared Operator * (
a As Permutation,
b As Permutation
) As Permutationpublic:
static Permutation^ operator *(
Permutation^ a,
Permutation^ b
)static let inline (*)
a : Permutation *
b : Permutation : PermutationThe product ab means first applying b, then applying a. This right-to-left convention arises from the convention that operators are applied to the right.