Octopus
|
Data Types | |
interface | namespace_t |
Functions/Subroutines | |
recursive type(namespace_t) function | namespace_constructor (name, parent, delimiter) |
Create namespace from name. If parent is present, the new namespace will be a child of it. It is also possible to create a namespace with several ancestors on the fly by providing a dot separated list of names. A different delimiter can be specified with the delimiter optional argument. More... | |
recursive character(len=max_namespace_len) function | namespace_get (this, delimiter) |
get full name, including parents More... | |
pure recursive integer function | namespace_len (this) |
elemental logical function | namespace_equal (lhs, rhs) |
logical function | namespace_contains (this, namespace) |
logical function | namespace_is_contained_in (this, name, delimiter) |
Variables | |
integer, parameter, public | max_namespace_len = 128 |
type(namespace_t), public | global_namespace |
|
private |
Create namespace from name. If parent is present, the new namespace will be a child of it. It is also possible to create a namespace with several ancestors on the fly by providing a dot separated list of names. A different delimiter can be specified with the delimiter optional argument.
Definition at line 141 of file namespace.F90.
|
private |
get full name, including parents
Definition at line 195 of file namespace.F90.
|
private |
Definition at line 218 of file namespace.F90.
|
private |
Definition at line 235 of file namespace.F90.
|
private |
Definition at line 244 of file namespace.F90.
|
private |
Definition at line 278 of file namespace.F90.
integer, parameter, public namespace_oct_m::max_namespace_len = 128 |
Definition at line 113 of file namespace.F90.
type(namespace_t), public namespace_oct_m::global_namespace |
Definition at line 132 of file namespace.F90.