concepts.language.ccg.composition.CCGCoordinationImmNode#

class CCGCoordinationImmNode[source]#

Bases: object

An intermediate node for coordination.

Methods

Attributes

is_conj

Whether this node is a conjunction node.

is_function

Whether this node is a function node.

is_none

Whether this node is a None node.

is_value

Whether this node is a value node.

conj

The conjunction node.

rhs

The right-hand side node.

__init__(conj, rhs)#
Parameters:
Return type:

None

__new__(**kwargs)#
conj: CCGComposable#

The conjunction node.

property is_conj: bool#

Whether this node is a conjunction node. This property is always False.

property is_function: bool#

Whether this node is a function node. This property is always False.

property is_none: bool#

Whether this node is a None node. This property is always False.

property is_value: bool#

Whether this node is a value node. This property is always False.

rhs: CCGComposable#

The right-hand side node.