FutureProg functions

isclanbrother

Clans · computer function, computer program, standard futureprog

Boolean isclanbrother(Character character, Character target)
Contexts: computer function, computer program, standard futureprog
Checks whether two characters share at least one clan membership after optionally excluding a clan or collection of clans. Use the exclusion overloads to ignore common public clans. Errors if either character is null; returns false if there is no shared qualifying clan.
character: The first character to compare.
target: The second character to compare.

Boolean isclanbrother(Character character, Character target, Clan excludedClan)
Contexts: computer function, computer program, standard futureprog
Checks whether two characters share at least one clan membership after optionally excluding a clan or collection of clans. Use the exclusion overloads to ignore common public clans. Errors if either character is null; returns false if there is no shared qualifying clan.
character: The first character to compare.
target: The second character to compare.
excludedClan: A clan to ignore when checking for shared membership.

Boolean isclanbrother(Character character, Character target, Clan Collection excludedClans)
Contexts: computer function, computer program, standard futureprog
Checks whether two characters share at least one clan membership after optionally excluding a clan or collection of clans. Use the exclusion overloads to ignore common public clans. Errors if either character is null; returns false if there is no shared qualifying clan.
character: The first character to compare.
target: The second character to compare.
excludedClans: A collection of clans to ignore when checking for shared membership.

← Back to FutureProg functions