FullNameParser::is_compound PHP Method

is_compound() protected method

Checks our dictionary of compound indicators to see if last name is compound
protected is_compound ( string $word ) : boolean
$word string the single word you wish to test
return boolean
    protected function is_compound($word)
    {
        return array_search(strtolower($word), $this->dict['compound']);
    }