Page MenuHomeWickedGov Phorge

ChemFun2u.php
No OneTemporary

Size
955 B
Referenced Files
None
Subscribers
None

ChemFun2u.php

<?php
declare( strict_types = 1 );
namespace MediaWiki\Extension\Math\WikiTexVC\Nodes;
class ChemFun2u extends TexNode {
/** @var string */
private $fname;
/** @var TexNode */
private $left;
/** @var TexNode */
private $right;
/**
* @return string
*/
public function getFname(): string {
return $this->fname;
}
public function __construct( string $fname, TexNode $left, TexNode $right ) {
parent::__construct( $fname, $left, $right );
$this->fname = $fname;
$this->left = $left;
$this->right = $right;
}
/**
* @return TexNode
*/
public function getLeft(): TexNode {
return $this->left;
}
/**
* @return TexNode
*/
public function getRight(): TexNode {
return $this->right;
}
/** @inheritDoc */
public function render() {
return $this->fname . $this->left->inCurlies() . '_' . $this->right->inCurlies();
}
/** @inheritDoc */
public function extractIdentifiers( $args = null ) {
return [];
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 21:38 (2 d, 10 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
7d/68/998667f62041769fa4e685acebaa
Default Alt Text
ChemFun2u.php (955 B)

Event Timeline