Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4110223
ChemFun2u.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
955 B
Referenced Files
None
Subscribers
None
ChemFun2u.php
View Options
<?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
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 21:38 (2 d, 13 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
7d/68/998667f62041769fa4e685acebaa
Default Alt Text
ChemFun2u.php (955 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment