public static Permutation operator *(
Permutation a,
Permutation b
)
Public Shared Operator * (
a As Permutation,
b As Permutation
) As Permutation
public:
static Permutation^ operator *(
Permutation^ a,
Permutation^ b
)
static let inline (*)
a : Permutation *
b : Permutation : Permutation
The 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.