equal Phrases
fun equalPhrases(phrases1: Iterable<A_Phrase>, phrases2: Iterable<A_Phrase>): Boolean
Content copied to clipboard
Given two Iterables of A_Phrases, check that they have the same length, and that their corresponding elements are A_Phrase.equalsPhrase.
Return
Whether the phrases were all equivalent.
Parameters
phrases1
The first source of phrases.
phrases2
The other source of phrases.