Sha256: eb263148615f84b3886ee99f04288fe531aa8271a5d1a52a494ad90a7816e70c

Contents?: true

Size: 954 Bytes

Versions: 22

Compression:

Stored size: 954 Bytes

Contents

PATHNAME

  DESCRIPTION
    All gloo object data and scripts are stored in a heap of objects or
    just "the heap".  The heap is hierarchical, with some objects having
    children objects.  To reference an object, we use a "pathname".  The
    pathname starts with the root level object then has a period, ".",
    then the child object name, and so forth.  "a.b.c" refers to the "c"
    object in the "b" container, which is in the "a" container.

  ROOT
    The word "root" is not needed when referring to objects.  In some
    special cases, "root" can be used to point to the first level of
    the object heap.  One such use would be with the "context" verb.

  EXAMPLE
    Here is an example of objects and a pathname reference to an
    object within the hierarchy:

      #
      # Hierarchical containers.
      #
      a [can] :
        b [can] :
          c [string] : Hello World
      on_load [script] : show a.b.c

  SEE ALSO
    context

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
gloo-lang-1.0.2 lib/gloo_lang/help/core/pathname.txt
gloo-1.0.0 lib/gloo/help/core/pathname.txt
gloo-lang-1.0.1 lib/gloo_lang/help/core/pathname.txt
gloo-lang-1.0.0 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.11 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.10 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.9 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.8 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.7 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.6 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.5 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.4 lib/gloo_lang/help/core/pathname.txt
gloo-lang-0.9.3 lib/gloo_lang/help/core/pathname.txt
gloo-0.8.0 lib/gloo/help/core/pathname.txt
gloo-0.7.7 lib/gloo/help/core/pathname.txt
gloo-0.7.6 lib/gloo/help/core/pathname.txt
gloo-0.7.5 lib/gloo/help/core/pathname.txt
gloo-0.7.4 lib/gloo/help/core/pathname.txt
gloo-0.7.3 lib/gloo/help/core/pathname.txt
gloo-0.7.2 lib/gloo/help/core/pathname.txt