Pinq\Analysis\TypeSystem::getFunction PHP Method

getFunction() public method

public getFunction ( $name )
    public function getFunction($name)
    {
        $normalizedName = $this->normalizeFunctionName($name);
        if (!isset($this->functions[$normalizedName])) {
            $this->functions[$normalizedName] = $this->buildFunction($normalizedName);
        }
        return $this->functions[$normalizedName];
    }