diff --git a/.gitattributes b/.gitattributes index 662d3c1..88d998b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,2 @@ -# Generated / vendored surface inputs — exclude from language stats and collapse diffs. -tools/baseline/streaming-relevance-baseline.json linguist-generated=true -diff -flink-processor/jar/JMEOS.jar binary linguist-generated=true +# Generated output — exclude from language stats. +flink-processor/target/** linguist-generated=true diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index d8a5fd9..f5f89f9 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -21,26 +21,57 @@ jobs: java-version: "21" cache: maven - - name: Resolve the MEOS source commit - id: meos - # The bundled JMEOS jar and the generated MeosOps* facades are produced from one - # upstream MobilityDB commit, recorded once in tools/meos-source-commit.txt. CI reads - # it so the libmeos the smoke tests load stays in lockstep with the vendored surface — - # bumping the surface is a single edit there, with no SHA duplicated in this workflow. - run: echo "sha=$(tr -d '[:space:]' < tools/meos-source-commit.txt)" >> "$GITHUB_OUTPUT" - - # Build and install the all-families libmeos through the shared - # provision-meos action so the MEOS build recipe (PG purge, apt.postgresql.org - # PG17, deps, cmake --build/--install under /usr/local) lives in one place. - - name: Build and install libmeos + # Derive the MEOS catalog (meos-idl.json via run.py) and build+install the + # all-families libmeos.so from upstream MobilityDB master, through the shared + # composite action (PG purge, apt.postgresql.org PG17, deps, cmake, install under + # /usr/local). Tracking master (not a pinned commit) keeps the source, the catalog, + # the JMEOS jar and the libmeos the smoke tests load all moving together, so the + # generated facades can never drift from the surface they are built against. + - name: Provision MEOS catalog + libmeos + id: provision uses: MobilityDB/MEOS-API/.github/actions/provision-meos@master with: - mobilitydb-ref: ${{ steps.meos.outputs.sha }} + mobilitydb-ref: master build-libmeos: "true" + - name: Derive the streaming-relevance baseline from the catalog + # The facade generator reads tools/baseline/streaming-relevance-baseline.json; derive + # it from the master catalog with the deterministic classifier so the generator input + # tracks master too. The baseline is gitignored — it only ever exists as a build artifact. + run: | + tools/regen_baseline.sh "${{ steps.provision.outputs.catalog-path }}" + echo "LD_LIBRARY_PATH=/usr/local/lib" >> "$GITHUB_ENV" + + - name: Check out JMEOS at master + # Build the JMEOS jar (org.jmeos:meos:1.0) from JMEOS main against the SAME + # master-derived catalog and libmeos, so the jar's FFI surface can never drift from the + # surface the facade generator reads or the libmeos the smoke tests load. + uses: actions/checkout@v4 + with: + repository: MobilityDB/JMEOS + ref: main + path: jmeos + + - name: Build + install the JMEOS jar as org.jmeos:meos:1.0 + # Mirror JMEOS's own CI: stage the already-derived catalog + libmeos into the JMEOS + # checkout and build it (jmeos-core's generate-sources emits GeneratedFunctions from the + # catalog). The jar plugin writes the plain jar/JMEOS.jar (finalName JMEOS) — jnr-ffi is + # supplied by this project's own pom, so the plain jar is what the removed committed + # jar/JMEOS.jar was; libmeos is loaded from LD_LIBRARY_PATH, never from the jar. It is + # installed under the org.jmeos:meos:1.0 coordinates the facade generator and the + # processor consume. Tests are skipped — only the jar is needed; JMEOS's own CI exercises + # its FFI suite. + run: | + mkdir -p jmeos/codegen/input + cp "${{ steps.provision.outputs.catalog-path }}" jmeos/codegen/input/meos-idl.json + cp /usr/local/lib/libmeos.so jmeos/jmeos-core/src/ + mvn -B -f jmeos/pom.xml clean install -Dmaven.test.skip=true + mvn -B install:install-file \ + -Dfile=jmeos/jar/JMEOS.jar \ + -DgroupId=org.jmeos -DartifactId=meos -Dversion=1.0 -Dpackaging=jar + - name: Build + generate + smoke tests - # The generated MeosOps* facades forward to the bundled JMEOS jar (system-scoped); the - # smoke tests exercise them against the freshly built libmeos, resolved from - # /usr/local/lib rather than the committed lib/ copy. + # generate-sources runs the facade generator over the installed jar's surface ∩ baseline; + # the smoke tests exercise the facades against the freshly built libmeos from /usr/local/lib. working-directory: flink-processor run: mvn -B -Dmeos.lib.dir=/usr/local/lib -Dmeos.enabled=true clean test diff --git a/.gitignore b/.gitignore index b18969e..96d7870 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,7 @@ __pycache__/ # Maven build output flink-processor/target/ + +# Derived generator input — the streaming-relevance baseline is regenerated in CI +# from the master MEOS catalog (tools/regen_baseline.sh), never committed. +tools/baseline/streaming-relevance-baseline.json diff --git a/GENERATION.md b/GENERATION.md index 2beb3d7..00889ec 100644 --- a/GENERATION.md +++ b/GENERATION.md @@ -35,24 +35,19 @@ classifier: the tier of a function is decided purely by its name, its object-mod and its number of temporal parameters (zero per-function judgement), so the same MEOS catalog always yields the same baseline. -The full input chain, from the tracked MobilityDB commit: +The full input chain, from upstream MobilityDB master: ``` -MobilityDB @ tools/meos-source-commit.txt - → MEOS-API/run.py over the MEOS headers → meos-idl.json (the catalog) - → tools/classify_streaming_relevance.py → tools/baseline/streaming-relevance-baseline.json - → tools/codegen_facades.py (jar-surface ∩ baseline) → org.mobilitydb.meos.MeosOps* facades +MobilityDB @ master + → provision-meos (MEOS-API/run.py over the MEOS headers) → meos-idl.json (the catalog) + → tools/classify_streaming_relevance.py → tools/baseline/streaming-relevance-baseline.json + → tools/codegen_facades.py (jar-surface ∩ baseline) → org.mobilitydb.meos.MeosOps* facades ``` -To refresh the baseline (e.g. after bumping `tools/meos-source-commit.txt`): rebuild the -catalog at the tracked commit with MEOS-API, then - -``` -tools/regen_baseline.sh -``` - -and commit the diff. Because the classifier is deterministic, an unchanged catalog -regenerates the baseline byte-for-byte. +CI derives the baseline from the master catalog with `tools/regen_baseline.sh +` before the build; the baseline is gitignored, not committed. +Because the classifier is deterministic, the same catalog regenerates it byte-for-byte, so +a local refresh is: build the catalog from master with MEOS-API, then run the same script. ## Generate-then-retire — the green-CI version is the probe @@ -62,14 +57,14 @@ green-CI version** (the test suite + the streaming benchmark), then retire the h The `MeosOps*` facades are emitted at build time and are **not committed**: Maven `generate-sources` runs `tools/codegen_facades.py` into `target/generated-facades`, and -`build-helper` adds it as a source root. Only the generator, its `tools/baseline/`, and the -bundled jar are tracked; the sole hand-written class under `org.mobilitydb.meos` is -`MeosSetSetJoin`. +`build-helper` adds it as a source root. Only the generator and its `tools/` classifier are +tracked; the catalog, the baseline and the JMEOS jar are all derived in CI, and the sole +hand-written class under `org.mobilitydb.meos` is `MeosSetSetJoin`. ## Surface match -The bundled JMEOS jar (`flink-processor/jar/JMEOS.jar`) is committed and consumed -system-scoped; the generator reads its raw-FFI surface. The `libmeos.so` it links must be -built from the **same MobilityDB commit** the JMEOS surface was generated against — -surface-match, else runtime symbol faults. That commit is the *catalog/surface* input for -the whole binding. +The JMEOS jar is built from **JMEOS `main`** in CI against the master-derived catalog and +installed as `org.jmeos:meos:1.0`; the generator reads its raw-FFI surface. The `libmeos.so` +the smoke tests load is built from the **same** master catalog, so the jar surface, the +facades and the native library all track master together — surface-match by construction, +with no committed jar or pinned commit to drift. diff --git a/flink-processor/jar/JMEOS.jar b/flink-processor/jar/JMEOS.jar deleted file mode 100644 index 3f4ebe8..0000000 Binary files a/flink-processor/jar/JMEOS.jar and /dev/null differ diff --git a/flink-processor/pom.xml b/flink-processor/pom.xml index 7ba90e7..2245525 100644 --- a/flink-processor/pom.xml +++ b/flink-processor/pom.xml @@ -102,13 +102,12 @@ 1.18.1 - + - com.mobilitydb - jmeos - 1.0.0 - system - ${project.basedir}/jar/JMEOS.jar + org.jmeos + meos + 1.0 @@ -208,8 +207,8 @@ - + org.codehaus.mojo exec-maven-plugin @@ -224,7 +223,7 @@ ${project.basedir}/../tools/codegen_facades.py --jar - ${project.basedir}/jar/JMEOS.jar + ${settings.localRepository}/org/jmeos/meos/1.0/meos-1.0.jar --out ${project.build.directory}/generated-facades --engine diff --git a/tools/baseline/streaming-relevance-baseline.json b/tools/baseline/streaming-relevance-baseline.json deleted file mode 100644 index fd5342d..0000000 --- a/tools/baseline/streaming-relevance-baseline.json +++ /dev/null @@ -1,41649 +0,0 @@ -{ - "schema_version": "0.1.0-draft", - "source_catalog": "meos-idl.json (MobilityDB master, MEOS-API run.py)", - "source_catalog_function_count": 3548, - "classifier": "v4", - "vocabulary": [ - "stateless", - "bounded-state", - "windowed", - "cross-stream", - "sequence-only", - "io-meta", - "internal", - "ambiguous" - ], - "public_headers": [ - "meos.h", - "meos_catalog.h", - "meos_cbuffer.h", - "meos_geo.h", - "meos_npoint.h", - "meos_pose.h", - "meos_rgeo.h", - "meos_transform.h" - ], - "rollup": { - "total": { - "io-meta": 218, - "stateless": 831, - "bounded-state": 817, - "windowed": 161, - "sequence-only": 14, - "cross-stream": 140, - "ambiguous": 59, - "internal": 1308 - }, - "public_only": { - "io-meta": 218, - "stateless": 831, - "bounded-state": 817, - "windowed": 161, - "sequence-only": 14, - "cross-stream": 140, - "ambiguous": 59 - }, - "public_by_header": { - "meos.h": { - "io-meta": 120, - "stateless": 504, - "bounded-state": 463, - "windowed": 116, - "sequence-only": 14, - "cross-stream": 44, - "ambiguous": 18 - }, - "meos_geo.h": { - "io-meta": 36, - "stateless": 154, - "ambiguous": 23, - "bounded-state": 150, - "windowed": 11, - "cross-stream": 46 - }, - "meos_cbuffer.h": { - "io-meta": 12, - "stateless": 48, - "bounded-state": 82, - "ambiguous": 2, - "cross-stream": 22, - "windowed": 8 - }, - "meos_catalog.h": { - "io-meta": 23, - "stateless": 23, - "ambiguous": 8, - "bounded-state": 20 - }, - "meos_transform.h": { - "stateless": 4 - }, - "meos_npoint.h": { - "io-meta": 15, - "stateless": 48, - "ambiguous": 6, - "windowed": 10, - "bounded-state": 32, - "cross-stream": 8 - }, - "meos_pose.h": { - "io-meta": 11, - "stateless": 41, - "bounded-state": 32, - "ambiguous": 2, - "cross-stream": 8, - "windowed": 8 - }, - "meos_rgeo.h": { - "io-meta": 1, - "stateless": 9, - "bounded-state": 38, - "cross-stream": 12, - "windowed": 8 - } - }, - "headline_public": { - "streaming_relevant": 1949, - "sequence_only": 14, - "io_meta": 218, - "ambiguous": 59, - "public_total": 2240 - } - }, - "functions": [ - { - "name": "meos_array_create", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "struct MeosArray *", - "n_params": 1 - }, - { - "name": "meos_array_add", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 2 - }, - { - "name": "meos_array_get", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void *", - "n_params": 2 - }, - { - "name": "meos_array_count", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "meos_array_reset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 1 - }, - { - "name": "meos_array_reset_free", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 1 - }, - { - "name": "meos_array_destroy", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 1 - }, - { - "name": "meos_array_destroy_free", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 1 - }, - { - "name": "rtree_create_intspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "struct RTree *", - "n_params": 0 - }, - { - "name": "rtree_create_bigintspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "struct RTree *", - "n_params": 0 - }, - { - "name": "rtree_create_floatspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "struct RTree *", - "n_params": 0 - }, - { - "name": "rtree_create_datespan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "struct RTree *", - "n_params": 0 - }, - { - "name": "rtree_create_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "struct RTree *", - "n_params": 0 - }, - { - "name": "rtree_create_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "struct RTree *", - "n_params": 0 - }, - { - "name": "rtree_create_stbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "struct RTree *", - "n_params": 0 - }, - { - "name": "rtree_free", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 1 - }, - { - "name": "rtree_insert", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 3 - }, - { - "name": "rtree_insert_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 3 - }, - { - "name": "rtree_search", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 4 - }, - { - "name": "rtree_search_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 4 - }, - { - "name": "meos_error", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 3 - }, - { - "name": "meos_errno", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 0 - }, - { - "name": "meos_errno_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "meos_errno_restore", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "meos_errno_reset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 0 - }, - { - "name": "meos_initialize_timezone", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 1 - }, - { - "name": "meos_initialize_error_handler", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 1 - }, - { - "name": "meos_finalize_timezone", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 0 - }, - { - "name": "meos_finalize_projsrs", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 0 - }, - { - "name": "meos_finalize_ways", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 0 - }, - { - "name": "meos_set_datestyle", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 2 - }, - { - "name": "meos_set_intervalstyle", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 2 - }, - { - "name": "meos_get_datestyle", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "char *", - "n_params": 0 - }, - { - "name": "meos_get_intervalstyle", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "char *", - "n_params": 0 - }, - { - "name": "meos_set_spatial_ref_sys_csv", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 1 - }, - { - "name": "meos_initialize", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 0 - }, - { - "name": "meos_finalize", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "void", - "n_params": 0 - }, - { - "name": "add_date_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar arithmetic", - "return_c": "int", - "n_params": 2 - }, - { - "name": "add_interval_interval", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "add_timestamptz_interval", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar arithmetic", - "return_c": "int", - "n_params": 2 - }, - { - "name": "bool_in", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bool_out", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "cstring2text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "string/CString conversion (low-level)", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "date_to_timestamp", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "date_to_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "int", - "n_params": 1 - }, - { - "name": "float_exp", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 1 - }, - { - "name": "float_ln", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 1 - }, - { - "name": "float_log10", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 1 - }, - { - "name": "float8_out", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "float_round", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "double", - "n_params": 2 - }, - { - "name": "int32_cmp", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison with width suffix", - "return_c": "int", - "n_params": 2 - }, - { - "name": "int64_cmp", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison with width suffix", - "return_c": "int", - "n_params": 2 - }, - { - "name": "interval_make", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "int *", - "n_params": 7 - }, - { - "name": "minus_date_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "int", - "n_params": 2 - }, - { - "name": "minus_date_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "int", - "n_params": 2 - }, - { - "name": "minus_timestamptz_interval", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "int", - "n_params": 2 - }, - { - "name": "minus_timestamptz_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "mul_interval_double", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "pg_date_in", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int", - "n_params": 1 - }, - { - "name": "pg_date_out", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "pg_interval_cmp", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "string/CString conversion (low-level)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pg_interval_in", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "pg_interval_out", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "pg_timestamp_in", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pg_timestamp_out", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "pg_timestamptz_in", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pg_timestamptz_out", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "text2cstring", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "string/CString conversion (low-level)", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "text_cmp", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "text_copy", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "text_in", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "text_initcap", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "text_lower", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "text_out", - "file": "meos.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "text_upper", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "textcat_text_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "text concatenation (per-instant)", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "timestamptz_shift", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "timestamp_to_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "int", - "n_params": 1 - }, - { - "name": "timestamptz_to_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "BigintSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "bigintset_out", - "file": "meos.h", - "role": "output", - "class": [ - "BigintSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "bigintspan_expand", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "bigintspan_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "BigintSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "bigintspan_out", - "file": "meos.h", - "role": "output", - "class": [ - "BigintSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "bigintspanset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "BigintSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "bigintspanset_out", - "file": "meos.h", - "role": "output", - "class": [ - "BigintSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "dateset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "DateSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "dateset_out", - "file": "meos.h", - "role": "output", - "class": [ - "DateSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "datespan_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "DateSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "datespan_out", - "file": "meos.h", - "role": "output", - "class": [ - "DateSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "datespanset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "DateSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "datespanset_out", - "file": "meos.h", - "role": "output", - "class": [ - "DateSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "floatset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "FloatSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "floatset_out", - "file": "meos.h", - "role": "output", - "class": [ - "FloatSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "floatspan_expand", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "floatspan_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "FloatSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "floatspan_out", - "file": "meos.h", - "role": "output", - "class": [ - "FloatSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "floatspanset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "FloatSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "floatspanset_out", - "file": "meos.h", - "role": "output", - "class": [ - "FloatSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "intset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "IntSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "intset_out", - "file": "meos.h", - "role": "output", - "class": [ - "IntSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "intspan_expand", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intspan_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "IntSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "intspan_out", - "file": "meos.h", - "role": "output", - "class": [ - "IntSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "intspanset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "IntSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "intspanset_out", - "file": "meos.h", - "role": "output", - "class": [ - "IntSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "set_as_hexwkb", - "file": "meos.h", - "role": "output", - "class": [ - "Set" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "set_as_wkb", - "file": "meos.h", - "role": "output", - "class": [ - "Set" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "set_from_hexwkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "Set" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "set_from_wkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "Set" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "span_as_hexwkb", - "file": "meos.h", - "role": "output", - "class": [ - "Span" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "span_as_wkb", - "file": "meos.h", - "role": "output", - "class": [ - "Span" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "span_from_hexwkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "Span" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "span_from_wkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "Span" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "spanset_as_hexwkb", - "file": "meos.h", - "role": "output", - "class": [ - "SpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "spanset_as_wkb", - "file": "meos.h", - "role": "output", - "class": [ - "SpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "spanset_from_hexwkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "SpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "spanset_from_wkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "SpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "textset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TextSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "textset_out", - "file": "meos.h", - "role": "output", - "class": [ - "TextSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "tstzset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TstzSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tstzset_out", - "file": "meos.h", - "role": "output", - "class": [ - "TstzSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "tstzspan_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TstzSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tstzspan_out", - "file": "meos.h", - "role": "output", - "class": [ - "TstzSpan" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "tstzspanset_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TstzSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tstzspanset_out", - "file": "meos.h", - "role": "output", - "class": [ - "TstzSpanSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "bigintset_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "BigintSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "bigintspan_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "BigintSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "dateset_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "DateSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "datespan_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "DateSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "floatset_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "FloatSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "floatspan_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "FloatSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "intset_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "IntSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intspan_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "IntSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "set_copy", - "file": "meos.h", - "role": "constructor", - "class": [ - "Set" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "span_copy", - "file": "meos.h", - "role": "constructor", - "class": [ - "Span" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "spanset_copy", - "file": "meos.h", - "role": "constructor", - "class": [ - "SpanSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "spanset_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "SpanSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "textset_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TextSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "tstzset_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TstzSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "tstzspan_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TstzSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "bigint_to_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "bigint_to_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "bigint_to_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "date_to_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "date_to_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "date_to_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "dateset_to_tstzset", - "file": "meos.h", - "role": "conversion", - "class": [ - "DateSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "datespan_to_tstzspan", - "file": "meos.h", - "role": "conversion", - "class": [ - "DateSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "datespanset_to_tstzspanset", - "file": "meos.h", - "role": "conversion", - "class": [ - "DateSpanSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "float_to_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "float_to_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "float_to_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "floatset_to_intset", - "file": "meos.h", - "role": "conversion", - "class": [ - "FloatSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "floatspan_to_intspan", - "file": "meos.h", - "role": "conversion", - "class": [ - "FloatSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "floatspanset_to_intspanset", - "file": "meos.h", - "role": "conversion", - "class": [ - "FloatSpanSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "int_to_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "int_to_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "int_to_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "intset_to_floatset", - "file": "meos.h", - "role": "conversion", - "class": [ - "IntSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "intspan_to_floatspan", - "file": "meos.h", - "role": "conversion", - "class": [ - "IntSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "intspanset_to_floatspanset", - "file": "meos.h", - "role": "conversion", - "class": [ - "IntSpanSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "set_to_span", - "file": "meos.h", - "role": "conversion", - "class": [ - "Set" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "set_to_spanset", - "file": "meos.h", - "role": "conversion", - "class": [ - "Set" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "span_to_spanset", - "file": "meos.h", - "role": "conversion", - "class": [ - "Span" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "text_to_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "timestamptz_to_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "timestamptz_to_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "timestamptz_to_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tstzset_to_dateset", - "file": "meos.h", - "role": "conversion", - "class": [ - "TstzSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tstzspan_to_datespan", - "file": "meos.h", - "role": "conversion", - "class": [ - "TstzSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tstzspanset_to_datespanset", - "file": "meos.h", - "role": "conversion", - "class": [ - "TstzSpanSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "bigintset_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintset_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintset_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "bigintset_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "bigintspan_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintspan_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintspan_width", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintspanset_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintspanset_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintspanset_width", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "dateset_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "dateset_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "dateset_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "dateset_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "datespan_duration", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "datespan_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datespan_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datespanset_date_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datespanset_dates", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "datespanset_duration", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "datespanset_end_date", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datespanset_num_dates", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datespanset_start_date", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "floatset_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "floatset_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "floatset_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "floatset_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double *", - "n_params": 1 - }, - { - "name": "floatspan_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "floatspan_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "floatspan_width", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "floatspanset_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "floatspanset_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "floatspanset_width", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 2 - }, - { - "name": "intset_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "intset_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "intset_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "intset_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "intspan_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "intspan_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "intspan_width", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "intspanset_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "intspanset_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "intspanset_width", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_hash", - "file": "meos.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "set_hash_extended", - "file": "meos.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_num_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "span_hash", - "file": "meos.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "span_hash_extended", - "file": "meos.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_lower_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "span_upper_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spanset_end_span", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "spanset_hash", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spanset_hash_extended", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_lower_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spanset_num_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spanset_span", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "spanset_span_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "spanset_spanarr", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span **", - "n_params": 1 - }, - { - "name": "spanset_start_span", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "spanset_upper_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "textset_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TextSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "textset_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TextSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "textset_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "TextSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "textset_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "TextSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int **", - "n_params": 1 - }, - { - "name": "tstzset_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tstzset_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tstzset_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tstzset_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tstzspan_duration", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tstzspan_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tstzspan_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tstzspanset_duration", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tstzspanset_end_timestamptz", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tstzspanset_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tstzspanset_num_timestamps", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tstzspanset_start_timestamptz", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tstzspanset_timestamps", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tstzspanset_timestamptz_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tstzspanset_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bigintset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 5 - }, - { - "name": "bigintspan_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 5 - }, - { - "name": "bigintspanset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 5 - }, - { - "name": "dateset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 5 - }, - { - "name": "datespan_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 5 - }, - { - "name": "datespanset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 5 - }, - { - "name": "floatset_ceil", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "floatset_degrees", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "floatset_floor", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "floatset_radians", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "floatset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 5 - }, - { - "name": "floatspan_ceil", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "floatspan_degrees", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "floatspan_floor", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "floatspan_radians", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "floatspan_round", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "floatspan_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 5 - }, - { - "name": "floatspanset_ceil", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "floatspanset_floor", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "floatspanset_degrees", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "floatspanset_radians", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "floatspanset_round", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "floatspanset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 5 - }, - { - "name": "intset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 5 - }, - { - "name": "intspan_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 5 - }, - { - "name": "intspanset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 5 - }, - { - "name": "tstzspan_expand", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "set_round", - "file": "meos.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "textcat_text_textset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "text concatenation (per-instant)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "textcat_textset_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "text concatenation (per-instant)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "textset_initcap", - "file": "meos.h", - "role": "accessor", - "class": [ - "TextSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "textset_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "TextSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "textset_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "TextSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "timestamptz_tprecision", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tstzset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 3 - }, - { - "name": "tstzset_tprecision", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 3 - }, - { - "name": "tstzspan_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "tstzspan_tprecision", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "tstzspanset_shift_scale", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 3 - }, - { - "name": "tstzspanset_tprecision", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 3 - }, - { - "name": "set_cmp", - "file": "meos.h", - "role": "predicate", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_eq", - "file": "meos.h", - "role": "predicate", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_ge", - "file": "meos.h", - "role": "predicate", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_gt", - "file": "meos.h", - "role": "predicate", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_le", - "file": "meos.h", - "role": "predicate", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_lt", - "file": "meos.h", - "role": "predicate", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_ne", - "file": "meos.h", - "role": "predicate", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_cmp", - "file": "meos.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_eq", - "file": "meos.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_ge", - "file": "meos.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_gt", - "file": "meos.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_le", - "file": "meos.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_lt", - "file": "meos.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_ne", - "file": "meos.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_cmp", - "file": "meos.h", - "role": "predicate", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_eq", - "file": "meos.h", - "role": "predicate", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_ge", - "file": "meos.h", - "role": "predicate", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_gt", - "file": "meos.h", - "role": "predicate", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_le", - "file": "meos.h", - "role": "predicate", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_lt", - "file": "meos.h", - "role": "predicate", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_ne", - "file": "meos.h", - "role": "predicate", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "set_split_each_n_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "set_split_n_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "spanset_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "spanset_split_each_n_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "spanset_split_n_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "adjacent_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_bigint_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_bigint_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_bigint_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_date_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_date_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_date_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_float_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_float_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_float_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_int_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_int_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_int_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_text_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_timestamptz_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_timestamptz_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_timestamptz_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_date_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_date_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_date_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_timestamptz_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_timestamptz_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_timestamptz_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_date_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_date_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_date_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_timestamptz_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_timestamptz_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_timestamptz_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_bigint_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_bigint_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_bigint_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_float_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_float_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_float_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_int_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_int_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_int_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_set_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_text_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_date_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_date_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_date_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_timestamptz_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_timestamptz_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_timestamptz_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_date_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_date_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_date_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_timestamptz_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_timestamptz_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_timestamptz_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_bigint_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_bigint_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_bigint_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_float_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_float_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_float_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_int_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_int_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_int_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_set_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_text_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_bigint_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_bigint_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_bigint_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_float_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_float_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_float_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_int_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_int_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_int_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_set_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_text_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_bigint_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_bigint_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_bigint_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_float_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_float_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_float_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_int_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_int_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_int_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_set_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_text_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "intersection_bigint_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_date_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_float_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_int_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intersection_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intersection_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intersection_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intersection_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intersection_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intersection_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_text_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_timestamptz_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_bigint_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_bigint_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_bigint_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_date_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_date_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_date_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_float_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_float_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_float_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_int_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_int_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_int_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_text_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_timestamptz_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_timestamptz_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_timestamptz_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_bigint_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_bigint_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_bigint_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_date_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_date_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_date_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_float_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_float_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_float_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_int_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_int_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_int_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_span_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_span_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_spanset_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_spanset_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_text_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_timestamptz_set", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_timestamptz_span", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_timestamptz_spanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "distance_bigintset_bigintset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_bigintspan_bigintspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_bigintspanset_bigintspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_bigintspanset_bigintspanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_dateset_dateset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_datespan_datespan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_datespanset_datespan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_datespanset_datespanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_floatset_floatset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_floatspan_floatspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_floatspanset_floatspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_floatspanset_floatspanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_intset_intset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_intspan_intspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_intspanset_intspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_intspanset_intspanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_set_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_set_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_set_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_set_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_set_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_span_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_span_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_span_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_span_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_span_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_spanset_bigint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_spanset_date", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_spanset_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_spanset_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_spanset_timestamptz", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_tstzset_tstzset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_tstzspan_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_tstzspanset_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_tstzspanset_tstzspanset", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "bigint_extent_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "bigint_union_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "date_extent_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "date_union_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "float_extent_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "float_union_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "int_extent_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "int_union_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "set_extent_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Set" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "set_union_finalfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Set" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "set_union_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Set" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "span_extent_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Span" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "span_union_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Span" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "spanset_extent_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "SpanSet" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "spanset_union_finalfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "SpanSet" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "spanset_union_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "SpanSet" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "text_union_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "timestamptz_extent_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "timestamptz_union_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "bigint_get_bin", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 3 - }, - { - "name": "bigintspan_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "bigintspanset_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "BigintSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "date_get_bin", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datespan_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "datespanset_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "DateSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "float_get_bin", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "double", - "n_params": 3 - }, - { - "name": "floatspan_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "floatspanset_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "FloatSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "int_get_bin", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 3 - }, - { - "name": "intspan_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "intspanset_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "IntSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "timestamptz_get_bin", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tstzspan_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "tstzspanset_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "tbox_as_hexwkb", - "file": "meos.h", - "role": "output", - "class": [ - "TBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "tbox_as_wkb", - "file": "meos.h", - "role": "output", - "class": [ - "TBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "tbox_from_hexwkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "tbox_from_wkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "tbox_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "tbox_out", - "file": "meos.h", - "role": "output", - "class": [ - "TBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "float_timestamptz_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "float_tstzspan_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "int_timestamptz_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "int_tstzspan_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "numspan_tstzspan_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "numspan_timestamptz_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "tbox_copy", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "tbox_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "float_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "int_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "set_to_tbox", - "file": "meos.h", - "role": "conversion", - "class": [ - "Set" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "span_to_tbox", - "file": "meos.h", - "role": "conversion", - "class": [ - "Span" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "spanset_to_tbox", - "file": "meos.h", - "role": "conversion", - "class": [ - "SpanSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "tbox_to_intspan", - "file": "meos.h", - "role": "conversion", - "class": [ - "TBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tbox_to_floatspan", - "file": "meos.h", - "role": "conversion", - "class": [ - "TBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tbox_to_tstzspan", - "file": "meos.h", - "role": "conversion", - "class": [ - "TBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "timestamptz_to_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "tbox_hash", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tbox_hash_extended", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_hast", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tbox_hasx", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tbox_tmax", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_tmax_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_tmin", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_tmin_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_xmax", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_xmax_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_xmin", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_xmin_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tboxfloat_xmax", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tboxfloat_xmin", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tboxint_xmax", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tboxint_xmin", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_expand_time", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "tbox_round", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "tbox_shift_scale_time", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 3 - }, - { - "name": "tfloatbox_expand", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "tfloatbox_shift_scale", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct TBox *", - "n_params": 5 - }, - { - "name": "tintbox_expand", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "tintbox_shift_scale", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct TBox *", - "n_params": 5 - }, - { - "name": "union_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct TBox *", - "n_params": 3 - }, - { - "name": "intersection_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "adjacent_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_tbox_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_cmp", - "file": "meos.h", - "role": "predicate", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_eq", - "file": "meos.h", - "role": "predicate", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_ge", - "file": "meos.h", - "role": "predicate", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_gt", - "file": "meos.h", - "role": "predicate", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_le", - "file": "meos.h", - "role": "predicate", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_lt", - "file": "meos.h", - "role": "predicate", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbox_ne", - "file": "meos.h", - "role": "predicate", - "class": [ - "TBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbool_from_mfjson", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBool" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tbool_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBool" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tbool_out", - "file": "meos.h", - "role": "output", - "class": [ - "TBool" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "temporal_as_hexwkb", - "file": "meos.h", - "role": "output", - "class": [ - "Temporal" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "temporal_as_mfjson", - "file": "meos.h", - "role": "output", - "class": [ - "Temporal" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 5 - }, - { - "name": "temporal_as_wkb", - "file": "meos.h", - "role": "output", - "class": [ - "Temporal" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "temporal_from_hexwkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "Temporal" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "temporal_from_wkb", - "file": "meos.h", - "role": "constructor", - "class": [ - "Temporal" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tfloat_from_mfjson", - "file": "meos.h", - "role": "constructor", - "class": [ - "TFloat" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TFloat" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_out", - "file": "meos.h", - "role": "output", - "class": [ - "TFloat" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "tint_from_mfjson", - "file": "meos.h", - "role": "constructor", - "class": [ - "TInt" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tint_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TInt" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tint_out", - "file": "meos.h", - "role": "output", - "class": [ - "TInt" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "ttext_from_mfjson", - "file": "meos.h", - "role": "constructor", - "class": [ - "TText" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "ttext_in", - "file": "meos.h", - "role": "constructor", - "class": [ - "TText" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "ttext_out", - "file": "meos.h", - "role": "output", - "class": [ - "TText" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "tbool_from_base_temp", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBool" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tboolinst_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBoolInst" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tboolseq_from_base_tstzset", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBoolSeq" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tboolseq_from_base_tstzspan", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBoolSeq" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tboolseqset_from_base_tstzspanset", - "file": "meos.h", - "role": "constructor", - "class": [ - "TBoolSeqSet" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "temporal_copy", - "file": "meos.h", - "role": "constructor", - "class": [ - "Temporal" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_from_base_temp", - "file": "meos.h", - "role": "constructor", - "class": [ - "TFloat" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tfloatinst_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TFloatInst" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tfloatseq_from_base_tstzset", - "file": "meos.h", - "role": "constructor", - "class": [ - "TFloatSeq" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tfloatseq_from_base_tstzspan", - "file": "meos.h", - "role": "constructor", - "class": [ - "TFloatSeq" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tfloatseqset_from_base_tstzspanset", - "file": "meos.h", - "role": "constructor", - "class": [ - "TFloatSeqSet" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tint_from_base_temp", - "file": "meos.h", - "role": "constructor", - "class": [ - "TInt" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tintinst_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TIntInst" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tintseq_from_base_tstzset", - "file": "meos.h", - "role": "constructor", - "class": [ - "TIntSeq" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tintseq_from_base_tstzspan", - "file": "meos.h", - "role": "constructor", - "class": [ - "TIntSeq" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tintseqset_from_base_tstzspanset", - "file": "meos.h", - "role": "constructor", - "class": [ - "TIntSeqSet" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequence_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TSequence" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 6 - }, - { - "name": "tsequenceset_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TSequenceSet" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_make_gaps", - "file": "meos.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequenceSet *", - "n_params": 5 - }, - { - "name": "ttext_from_base_temp", - "file": "meos.h", - "role": "constructor", - "class": [ - "TText" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttextinst_make", - "file": "meos.h", - "role": "constructor", - "class": [ - "TTextInst" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "ttextseq_from_base_tstzset", - "file": "meos.h", - "role": "constructor", - "class": [ - "TTextSeq" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "ttextseq_from_base_tstzspan", - "file": "meos.h", - "role": "constructor", - "class": [ - "TTextSeq" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "ttextseqset_from_base_tstzspanset", - "file": "meos.h", - "role": "constructor", - "class": [ - "TTextSeqSet" - ], - "tier": "sequence-only", - "confidence": "high", - "reason": "constructor of TSequence/TSeqSet", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tbool_to_tint", - "file": "meos.h", - "role": "conversion", - "class": [ - "TBool" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "temporal_to_tstzspan", - "file": "meos.h", - "role": "conversion", - "class": [ - "Temporal" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tfloat_to_tint", - "file": "meos.h", - "role": "conversion", - "class": [ - "TFloat" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tint_to_tfloat", - "file": "meos.h", - "role": "conversion", - "class": [ - "TInt" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnumber_to_span", - "file": "meos.h", - "role": "conversion", - "class": [ - "TNumber" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tnumber_to_tbox", - "file": "meos.h", - "role": "conversion", - "class": [ - "TNumber" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "tbool_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBool" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tbool_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBool" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tbool_value_at_timestamptz", - "file": "meos.h", - "role": "restriction", - "class": [ - "TBool" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tbool_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBool" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tbool_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBool" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "temporal_duration", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "temporal_end_instant", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_end_sequence", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "temporal_end_timestamptz", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_hash", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_instant_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "temporal_instants", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant **", - "n_params": 2 - }, - { - "name": "temporal_interp", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "const char *", - "n_params": 1 - }, - { - "name": "temporal_lower_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_max_instant", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_min_instant", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_num_instants", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_num_sequences", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_num_timestamps", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_segm_duration", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequenceSet *", - "n_params": 4 - }, - { - "name": "temporal_segments", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence **", - "n_params": 2 - }, - { - "name": "temporal_sequence_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "temporal_sequences", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence **", - "n_params": 2 - }, - { - "name": "temporal_start_instant", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_start_sequence", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "temporal_start_timestamptz", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_stops", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "temporal_subtype", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "const char *", - "n_params": 1 - }, - { - "name": "temporal_time", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "temporal_timestamps", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "temporal_timestamptz_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "temporal_upper_inc", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tfloat_avg_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tfloat_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tfloat_min_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tfloat_max_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tfloat_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tfloat_value_at_timestamptz", - "file": "meos.h", - "role": "restriction", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tfloat_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tfloat_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double *", - "n_params": 2 - }, - { - "name": "tint_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tint_max_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tint_min_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tint_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tint_value_at_timestamptz", - "file": "meos.h", - "role": "restriction", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tint_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tint_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tnumber_avg_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnumber_integral", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnumber_twavg", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnumber_valuespans", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "ttext_end_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "ttext_max_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "ttext_min_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "ttext_start_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "ttext_value_at_timestamptz", - "file": "meos.h", - "role": "restriction", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "int", - "n_params": 4 - }, - { - "name": "ttext_value_n", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ttext_values", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int **", - "n_params": 2 - }, - { - "name": "float_degrees", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 2 - }, - { - "name": "temparr_round", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct Temporal **", - "n_params": 3 - }, - { - "name": "temporal_round", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_scale_time", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_set_interp", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_shift_scale_time", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_shift_time", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_to_tinstant", - "file": "meos.h", - "role": "conversion", - "class": [ - "Temporal" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_to_tsequence", - "file": "meos.h", - "role": "conversion", - "class": [ - "Temporal" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "temporal_to_tsequenceset", - "file": "meos.h", - "role": "conversion", - "class": [ - "Temporal" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tfloat_ceil", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_degrees", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tfloat_floor", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_radians", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_scale_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tfloat_shift_scale_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tfloat_shift_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tint_scale_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tint_shift_scale_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tint_shift_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_append_tinstant", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 6 - }, - { - "name": "temporal_append_tsequence", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_delete_timestamptz", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_delete_tstzset", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_delete_tstzspan", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_delete_tstzspanset", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_insert", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_merge", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_merge_array", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_update", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tbool_at_value", - "file": "meos.h", - "role": "restriction", - "class": [ - "TBool" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tbool_minus_value", - "file": "meos.h", - "role": "restriction", - "class": [ - "TBool" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_after_timestamptz", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_at_max", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "temporal_at_min", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "temporal_at_timestamptz", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_at_tstzset", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_at_tstzspan", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_at_tstzspanset", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_at_values", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_before_timestamptz", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_minus_max", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "temporal_minus_min", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "temporal_minus_timestamptz", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_minus_tstzset", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_minus_tstzspan", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_minus_tstzspanset", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_minus_values", - "file": "meos.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tfloat_at_value", - "file": "meos.h", - "role": "restriction", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tfloat_minus_value", - "file": "meos.h", - "role": "restriction", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tint_at_value", - "file": "meos.h", - "role": "restriction", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tint_minus_value", - "file": "meos.h", - "role": "restriction", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnumber_at_span", - "file": "meos.h", - "role": "restriction", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnumber_at_spanset", - "file": "meos.h", - "role": "restriction", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnumber_at_tbox", - "file": "meos.h", - "role": "restriction", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnumber_minus_span", - "file": "meos.h", - "role": "restriction", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnumber_minus_spanset", - "file": "meos.h", - "role": "restriction", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnumber_minus_tbox", - "file": "meos.h", - "role": "restriction", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttext_at_value", - "file": "meos.h", - "role": "restriction", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttext_minus_value", - "file": "meos.h", - "role": "restriction", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_cmp", - "file": "meos.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "cross-stream", - "confidence": "high", - "reason": "predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_eq", - "file": "meos.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "cross-stream", - "confidence": "high", - "reason": "predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_ge", - "file": "meos.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "cross-stream", - "confidence": "high", - "reason": "predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_gt", - "file": "meos.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "cross-stream", - "confidence": "high", - "reason": "predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_le", - "file": "meos.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "cross-stream", - "confidence": "high", - "reason": "predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_lt", - "file": "meos.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "cross-stream", - "confidence": "high", - "reason": "predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_ne", - "file": "meos.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "cross-stream", - "confidence": "high", - "reason": "predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_bool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tbool_bool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_bool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tbool_bool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_bool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tbool_bool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_bool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tbool_bool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "teq_bool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_tbool_bool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tge_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tge_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tge_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tge_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tge_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tge_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tge_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgt_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgt_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgt_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgt_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgt_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgt_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgt_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tle_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tle_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tle_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tle_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tle_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tle_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tle_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tlt_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tlt_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tlt_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tlt_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tlt_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tlt_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tlt_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_bool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_tbool_bool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "temporal_split_each_n_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "temporal_split_n_spans", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "tnumber_split_each_n_tboxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 3 - }, - { - "name": "tnumber_split_n_tboxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 3 - }, - { - "name": "tnumber_tboxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "adjacent_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "same predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "same predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_temporal_tstzspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_temporal_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_tstzspan_temporal", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_numspan_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_tbox_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_tnumber_numspan", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_tnumber_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tand_bool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tand_tbool_bool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tand_tbool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=2)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tbool_when_true", - "file": "meos.h", - "role": "accessor", - "class": [ - "TBool" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tnot_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tor_bool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tor_tbool_bool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tor_tbool_tbool", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=2)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "add_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "add_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "add_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "add_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "add_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "div_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "div_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "div_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "div_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "div_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "mult_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "mult_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "mult_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "mult_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "mult_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=2)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "sub_float_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "sub_int_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "sub_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "sub_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "sub_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "arithmetic op on temporal number (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_derivative", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_exp", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_ln", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tfloat_log10", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnumber_abs", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnumber_trend", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "float_angular_difference", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 2 - }, - { - "name": "tnumber_angular_difference", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnumber_delta_value", - "file": "meos.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "textcat_text_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "text concatenation (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "textcat_ttext_text", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "text concatenation (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "textcat_ttext_ttext", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "text concatenation (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttext_initcap", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "ttext_upper", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "ttext_lower", - "file": "meos.h", - "role": "accessor", - "class": [ - "TText" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tdistance_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tnumber_tnumber", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "nad_tboxfloat_tboxfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tboxint_tboxint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nad_tfloat_float", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tfloat_tfloat", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tfloat_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tint_int", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nad_tint_tbox", - "file": "meos.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nad_tint_tint", - "file": "meos.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tbool_tand_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TBool" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tbool_tor_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TBool" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "temporal_extent_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "temporal_merge_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "temporal_merge_combinefn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "temporal_tagg_finalfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "temporal_tcount_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tfloat_tmax_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TFloat" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tfloat_tmin_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TFloat" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tfloat_tsum_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TFloat" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tfloat_wmax_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TFloat" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "tfloat_wmin_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TFloat" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "tfloat_wsum_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TFloat" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "timestamptz_tcount_transfn", - "file": "meos.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tint_tmax_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TInt" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tint_tmin_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TInt" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tint_tsum_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TInt" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tint_wmax_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TInt" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "tint_wmin_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TInt" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "tint_wsum_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TInt" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "tnumber_extent_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TNumber" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "tnumber_tavg_finalfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TNumber" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnumber_tavg_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TNumber" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tnumber_wavg_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TNumber" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "tstzset_tcount_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TstzSet" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tstzspan_tcount_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TstzSpan" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tstzspanset_tcount_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TstzSpanSet" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "ttext_tmax_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TText" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "ttext_tmin_transfn", - "file": "meos.h", - "role": "aggregate", - "class": [ - "TText" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "temporal_simplify_dp", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_simplify_max_dist", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_simplify_min_dist", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_simplify_min_tdelta", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_tprecision", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_tsample", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "temporal_dyntimewarp_distance", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 2 - }, - { - "name": "temporal_dyntimewarp_path", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "Match *", - "n_params": 3 - }, - { - "name": "temporal_frechet_distance", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 2 - }, - { - "name": "temporal_frechet_path", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "Match *", - "n_params": 3 - }, - { - "name": "temporal_hausdorff_distance", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 2 - }, - { - "name": "temporal_time_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "temporal_time_split", - "file": "meos.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal **", - "n_params": 5 - }, - { - "name": "tfloat_time_boxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 4 - }, - { - "name": "tfloat_value_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "tfloat_value_boxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 4 - }, - { - "name": "tfloat_value_split", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal **", - "n_params": 5 - }, - { - "name": "tfloat_value_time_boxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 6 - }, - { - "name": "tfloat_value_time_split", - "file": "meos.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal **", - "n_params": 8 - }, - { - "name": "tfloatbox_time_tiles", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=0)", - "return_c": "struct TBox *", - "n_params": 4 - }, - { - "name": "tfloatbox_value_tiles", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=0)", - "return_c": "struct TBox *", - "n_params": 4 - }, - { - "name": "tfloatbox_value_time_tiles", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=0)", - "return_c": "struct TBox *", - "n_params": 6 - }, - { - "name": "tint_time_boxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 4 - }, - { - "name": "tint_value_bins", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "tint_value_boxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 4 - }, - { - "name": "tint_value_split", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal **", - "n_params": 5 - }, - { - "name": "tint_value_time_boxes", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TBox *", - "n_params": 6 - }, - { - "name": "tint_value_time_split", - "file": "meos.h", - "role": "accessor", - "class": [ - "TInt" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal **", - "n_params": 8 - }, - { - "name": "tintbox_time_tiles", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=0)", - "return_c": "struct TBox *", - "n_params": 4 - }, - { - "name": "tintbox_value_tiles", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=0)", - "return_c": "struct TBox *", - "n_params": 4 - }, - { - "name": "tintbox_value_time_tiles", - "file": "meos.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos.h, ntemp=0)", - "return_c": "struct TBox *", - "n_params": 6 - }, - { - "name": "geo_as_ewkb", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "name has IO token", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "geo_as_ewkt", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "geo_as_geojson", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 4 - }, - { - "name": "geo_as_hexewkb", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "name has IO token", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "geo_as_text", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "geo_from_ewkb", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "name has IO token", - "return_c": "int *", - "n_params": 3 - }, - { - "name": "geo_from_geojson", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geo_from_text", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_out", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "geog_from_binary", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geog_from_hexewkb", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "name has IO token", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geog_in", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_from_hexewkb", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "name has IO token", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geom_in", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "box3d_make", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "int *", - "n_params": 7 - }, - { - "name": "box3d_out", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "gbox_make", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "int *", - "n_params": 7 - }, - { - "name": "gbox_out", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "geo_copy", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geogpoint_make2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "int *", - "n_params": 3 - }, - { - "name": "geogpoint_make3dz", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "int *", - "n_params": 4 - }, - { - "name": "geompoint_make2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "int *", - "n_params": 3 - }, - { - "name": "geompoint_make3dz", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "int *", - "n_params": 4 - }, - { - "name": "geom_to_geog", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geog_to_geom", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geo_is_empty", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geo_is_unitary", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geo_typename", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "const char *", - "n_params": 1 - }, - { - "name": "geog_area", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 2 - }, - { - "name": "geog_centroid", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geog_length", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "double", - "n_params": 2 - }, - { - "name": "geog_perimeter", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 2 - }, - { - "name": "geom_azimuth", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 3 - }, - { - "name": "geom_length", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "double", - "n_params": 1 - }, - { - "name": "geom_perimeter", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 1 - }, - { - "name": "line_numpoints", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "line_point_n", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_reverse", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geo_round", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_set_srid", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_srid", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geo_transform", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_transform_pipeline", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 4 - }, - { - "name": "geo_collect_garray", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_makeline_garray", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_num_points", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geo_num_geos", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geo_geo_n", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_pointarr", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int **", - "n_params": 2 - }, - { - "name": "geo_points", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geom_array_union", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_boundary", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geom_buffer", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 3 - }, - { - "name": "geom_centroid", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geom_convex_hull", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geom_difference2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_intersection2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_intersection2d_coll", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_min_bounding_radius", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_shortestline2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_shortestline3d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_unary_union", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "line_interpolate_point", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "int *", - "n_params": 3 - }, - { - "name": "line_locate_point", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "double", - "n_params": 2 - }, - { - "name": "line_substring", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "int *", - "n_params": 3 - }, - { - "name": "geog_dwithin", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 4 - }, - { - "name": "geog_intersects", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 3 - }, - { - "name": "geom_contains", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geom_covers", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geom_disjoint2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geom_dwithin2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 3 - }, - { - "name": "geom_dwithin3d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 3 - }, - { - "name": "geom_intersects2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geom_intersects3d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geom_relate_pattern", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 3 - }, - { - "name": "geom_touches", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geo_stboxes", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "geo_split_each_n_stboxes", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "geo_split_n_stboxes", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "geog_distance", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 2 - }, - { - "name": "geom_distance2d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 2 - }, - { - "name": "geom_distance3d", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 2 - }, - { - "name": "geo_equals", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geo_same", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geogset_in", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "GeogSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "geomset_in", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "GeomSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "spatialset_as_text", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "spatialset_as_ewkt", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "geoset_make", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "GeomSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "geo_to_set", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "geoset_end_value", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "GeomSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geoset_start_value", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "GeomSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geoset_value_n", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "GeomSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "geoset_values", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "GeomSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int **", - "n_params": 1 - }, - { - "name": "contained_geo_set", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geo_union_transfn", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_geo_set", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_geo_set", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_geo_set", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "spatialset_set_srid", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "spatialset_srid", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spatialset_transform", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "spatialset_transform_pipeline", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 4 - }, - { - "name": "stbox_as_hexwkb", - "file": "meos_geo.h", - "role": "output", - "class": [ - "STBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "stbox_as_wkb", - "file": "meos_geo.h", - "role": "output", - "class": [ - "STBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "stbox_from_hexwkb", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "STBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "stbox_from_wkb", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "STBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_in", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "STBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "stbox_out", - "file": "meos_geo.h", - "role": "output", - "class": [ - "STBox" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "geo_timestamptz_to_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "geo_tstzspan_to_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_copy", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "STBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "stbox_make", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "STBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct STBox *", - "n_params": 11 - }, - { - "name": "geo_to_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "spatialset_to_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "stbox_to_box3d", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "STBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "stbox_to_gbox", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "STBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "stbox_to_geo", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "STBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "stbox_to_tstzspan", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "STBox" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "timestamptz_to_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "tstzset_to_stbox", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TstzSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "tstzspan_to_stbox", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TstzSpan" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "tstzspanset_to_stbox", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TstzSpanSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "stbox_area", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 2 - }, - { - "name": "stbox_hash", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "stbox_hash_extended", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_hast", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "stbox_hasx", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "stbox_hasz", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "stbox_isgeodetic", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "stbox_perimeter", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 2 - }, - { - "name": "stbox_tmax", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_tmax_inc", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_tmin", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_tmin_inc", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_volume", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "stbox_xmax", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_xmin", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_ymax", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_ymin", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_zmax", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_zmin", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_expand_space", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_expand_time", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_get_space", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "stbox_quad_split", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_round", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_shift_scale_time", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "stboxarr_round", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "stbox_set_srid", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_srid", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "stbox_transform", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_transform_pipeline", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 4 - }, - { - "name": "adjacent_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "above_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "back_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "below_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "front_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overabove_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overback_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbelow_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overfront_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "union_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "intersection_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_cmp", - "file": "meos_geo.h", - "role": "predicate", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_eq", - "file": "meos_geo.h", - "role": "predicate", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_ge", - "file": "meos_geo.h", - "role": "predicate", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_gt", - "file": "meos_geo.h", - "role": "predicate", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_le", - "file": "meos_geo.h", - "role": "predicate", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_lt", - "file": "meos_geo.h", - "role": "predicate", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "stbox_ne", - "file": "meos_geo.h", - "role": "predicate", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "predicate on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tgeogpoint_from_mfjson", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeogPoint" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeogpoint_in", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeogPoint" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeography_from_mfjson", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeography" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeography_in", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeography" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeometry_from_mfjson", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeometry" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeometry_in", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeometry" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeompoint_from_mfjson", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeomPoint" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeompoint_in", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeomPoint" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tspatial_as_ewkt", - "file": "meos_geo.h", - "role": "output", - "class": [ - "TSpatial" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "tspatial_as_text", - "file": "meos_geo.h", - "role": "output", - "class": [ - "TSpatial" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "tspatial_out", - "file": "meos_geo.h", - "role": "output", - "class": [ - "TSpatial" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "tgeo_from_base_temp", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TGeo" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgeoinst_make", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tgeoseq_from_base_tstzset", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tgeoseq_from_base_tstzspan", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tgeoseqset_from_base_tstzspanset", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tpoint_from_base_temp", - "file": "meos_geo.h", - "role": "constructor", - "class": [ - "TPoint" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpointinst_make", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tpointseq_from_base_tstzset", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tpointseq_from_base_tstzspan", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tpointseq_make_coords", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct TSequence *", - "n_params": 11 - }, - { - "name": "tpointseqset_from_base_tstzspanset", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "box3d_to_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "gbox_to_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "geomeas_to_tpoint", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=0)", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeogpoint_to_tgeography", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TGeogPoint" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeography_to_tgeogpoint", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TGeography" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeography_to_tgeometry", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TGeography" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeometry_to_tgeography", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TGeometry" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeometry_to_tgeompoint", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TGeometry" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeompoint_to_tgeometry", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TGeomPoint" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_as_mvtgeom", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 8 - }, - { - "name": "tpoint_tfloat_to_geomeas", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TPoint" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tspatial_to_stbox", - "file": "meos_geo.h", - "role": "conversion", - "class": [ - "TSpatial" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "bearing_point_point", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 3 - }, - { - "name": "bearing_tpoint_point", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=1)", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "bearing_tpoint_tpoint", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=2)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgeo_centroid", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeo_convex_hull", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tgeo_end_value", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tgeo_start_value", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tgeo_traversed_area", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tgeo_value_at_timestamptz", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tgeo_value_n", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tgeo_values", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int **", - "n_params": 2 - }, - { - "name": "tpoint_angular_difference", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_azimuth", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_cumulative_length", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_direction", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tpoint_get_x", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_get_y", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_get_z", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_is_simple", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tpoint_length", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tpoint_speed", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_trajectory", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tpoint_twcentroid", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tgeo_affine", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgeo_scale", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tpoint_make_simple", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal **", - "n_params": 2 - }, - { - "name": "tspatial_srid", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TSpatial" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tspatial_set_srid", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TSpatial" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tspatial_transform", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TSpatial" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tspatial_transform_pipeline", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TSpatial" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "tgeo_at_geom", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgeo_at_stbox", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tgeo_at_value", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgeo_minus_geom", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgeo_minus_stbox", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tgeo_minus_value", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpoint_at_elevation", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpoint_at_geom", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpoint_at_value", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpoint_minus_elevation", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpoint_minus_geom", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpoint_minus_value", - "file": "meos_geo.h", - "role": "restriction", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "always_eq_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "teq_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgeo_stboxes", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "tgeo_space_boxes", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 8 - }, - { - "name": "tgeo_space_time_boxes", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 10 - }, - { - "name": "tgeo_split_each_n_stboxes", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "tgeo_split_n_stboxes", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "adjacent_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overlaps_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "same predicate (pure box equality)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "same predicate on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "above_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "above_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "above_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "after_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "back_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "back_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "back_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "before_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "below_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "below_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "below_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "front_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "front_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "front_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overabove_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overabove_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overabove_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overafter_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overback_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overback_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overback_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbefore_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbelow_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbelow_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overbelow_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overfront_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overfront_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overfront_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_stbox_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_tspatial_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "topology/position rel on 1 temporal + scalar", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_tspatial_tspatial", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "topology/position rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acontains_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acontains_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acontains_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adisjoint_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adisjoint_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adwithin_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 3 - }, - { - "name": "adwithin_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 3 - }, - { - "name": "aintersects_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "aintersects_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "atouches_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "atouches_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "atouches_tpoint_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "econtains_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "econtains_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "econtains_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ecovers_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ecovers_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ecovers_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "edisjoint_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "edisjoint_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "edwithin_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 3 - }, - { - "name": "edwithin_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 3 - }, - { - "name": "eintersects_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "eintersects_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "etouches_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "etouches_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "etouches_tpoint_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tcontains_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcontains_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcontains_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcovers_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcovers_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcovers_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdisjoint_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdisjoint_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdisjoint_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdwithin_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdwithin_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdwithin_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tintersects_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tintersects_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tintersects_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttouches_geo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttouches_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttouches_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "nad_stbox_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_stbox_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tgeo_stbox", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nai_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "shortestline_tgeo_geo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tgeoarr_tgeoarr_mindist", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=2)", - "return_c": "double", - "n_params": 4 - }, - { - "name": "mindistance_tgeo_tgeo", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_geo.h, ntemp=2)", - "return_c": "double", - "n_params": 3 - }, - { - "name": "tpoint_tcentroid_finalfn", - "file": "meos_geo.h", - "role": "aggregate", - "class": [ - "TPoint" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpoint_tcentroid_transfn", - "file": "meos_geo.h", - "role": "aggregate", - "class": [ - "TPoint" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "tspatial_extent_transfn", - "file": "meos_geo.h", - "role": "aggregate", - "class": [ - "TSpatial" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "stbox_get_space_tile", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 5 - }, - { - "name": "stbox_get_space_time_tile", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 8 - }, - { - "name": "stbox_get_time_tile", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "stbox_space_tiles", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 7 - }, - { - "name": "stbox_space_time_tiles", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 9 - }, - { - "name": "stbox_time_tiles", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct STBox *", - "n_params": 5 - }, - { - "name": "tgeo_space_split", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal **", - "n_params": 9 - }, - { - "name": "tgeo_space_time_split", - "file": "meos_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal **", - "n_params": 12 - }, - { - "name": "geo_cluster_kmeans", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 3 - }, - { - "name": "geo_cluster_dbscan", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "unsigned int *", - "n_params": 5 - }, - { - "name": "geo_cluster_intersecting", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int **", - "n_params": 3 - }, - { - "name": "geo_cluster_within", - "file": "meos_geo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int **", - "n_params": 4 - }, - { - "name": "cbuffer_as_ewkt", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "cbuffer_as_hexwkb", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "cbuffer_as_text", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "cbuffer_as_wkb", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "cbuffer_from_hexwkb", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Cbuffer *", - "n_params": 1 - }, - { - "name": "cbuffer_from_wkb", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Cbuffer *", - "n_params": 2 - }, - { - "name": "cbuffer_in", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Cbuffer *", - "n_params": 1 - }, - { - "name": "cbuffer_out", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "cbuffer_copy", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Cbuffer *", - "n_params": 1 - }, - { - "name": "cbuffer_make", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "struct Cbuffer *", - "n_params": 2 - }, - { - "name": "cbuffer_to_geom", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "cbuffer_to_stbox", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "cbufferarr_to_geom", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_to_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Cbuffer *", - "n_params": 1 - }, - { - "name": "cbuffer_hash", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 1 - }, - { - "name": "cbuffer_hash_extended", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_point", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "cbuffer_radius", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 1 - }, - { - "name": "cbuffer_round", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct Cbuffer *", - "n_params": 2 - }, - { - "name": "cbufferarr_round", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct Cbuffer **", - "n_params": 3 - }, - { - "name": "cbuffer_set_srid", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "void", - "n_params": 2 - }, - { - "name": "cbuffer_srid", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "cbuffer_transform", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Cbuffer *", - "n_params": 2 - }, - { - "name": "cbuffer_transform_pipeline", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Cbuffer *", - "n_params": 4 - }, - { - "name": "contains_cbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "topology/position rel on 2 scalars (box/span algebra)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "covers_cbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "disjoint_cbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "dwithin_cbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 3 - }, - { - "name": "intersects_cbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "touches_cbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_tstzspan_to_stbox", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "cbuffer_timestamptz_to_stbox", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "distance_cbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_cbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_cbuffer_stbox", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_cbuffer_stbox", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "cbuffer_cmp", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_eq", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_ge", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_gt", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_le", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_lt", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_ne", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_nsame", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_same", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbufferset_in", - "file": "meos_cbuffer.h", - "role": "constructor", - "class": [ - "CbufferSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "cbufferset_out", - "file": "meos_cbuffer.h", - "role": "output", - "class": [ - "CbufferSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "cbufferset_make", - "file": "meos_cbuffer.h", - "role": "constructor", - "class": [ - "CbufferSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "cbuffer_to_set", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "cbufferset_end_value", - "file": "meos_cbuffer.h", - "role": "accessor", - "class": [ - "CbufferSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Cbuffer *", - "n_params": 1 - }, - { - "name": "cbufferset_start_value", - "file": "meos_cbuffer.h", - "role": "accessor", - "class": [ - "CbufferSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Cbuffer *", - "n_params": 1 - }, - { - "name": "cbufferset_value_n", - "file": "meos_cbuffer.h", - "role": "accessor", - "class": [ - "CbufferSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "cbufferset_values", - "file": "meos_cbuffer.h", - "role": "accessor", - "class": [ - "CbufferSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Cbuffer **", - "n_params": 1 - }, - { - "name": "cbuffer_union_transfn", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "contained_cbuffer_set", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "topology/position rel on 2 scalars (box/span algebra)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "intersection_cbuffer_set", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_cbuffer.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_cbuffer_set", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_cbuffer_set", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_cbuffer.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "tcbuffer_in", - "file": "meos_cbuffer.h", - "role": "constructor", - "class": [ - "TCbuffer" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tcbuffer_from_mfjson", - "file": "meos_cbuffer.h", - "role": "constructor", - "class": [ - "TCbuffer" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tcbuffer_make", - "file": "meos_cbuffer.h", - "role": "constructor", - "class": [ - "TCbuffer" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcbuffer_points", - "file": "meos_cbuffer.h", - "role": "accessor", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tcbuffer_radius", - "file": "meos_cbuffer.h", - "role": "accessor", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tcbuffer_trav_area", - "file": "meos_cbuffer.h", - "role": "accessor", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tcbuffer_to_tfloat", - "file": "meos_cbuffer.h", - "role": "conversion", - "class": [ - "TCbuffer" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tcbuffer_to_tgeompoint", - "file": "meos_cbuffer.h", - "role": "conversion", - "class": [ - "TCbuffer" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tgeometry_to_tcbuffer", - "file": "meos_cbuffer.h", - "role": "conversion", - "class": [ - "TGeometry" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tcbuffer_expand", - "file": "meos_cbuffer.h", - "role": "accessor", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcbuffer_at_cbuffer", - "file": "meos_cbuffer.h", - "role": "restriction", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcbuffer_at_geom", - "file": "meos_cbuffer.h", - "role": "restriction", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcbuffer_at_stbox", - "file": "meos_cbuffer.h", - "role": "restriction", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tcbuffer_minus_cbuffer", - "file": "meos_cbuffer.h", - "role": "restriction", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcbuffer_minus_geom", - "file": "meos_cbuffer.h", - "role": "restriction", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcbuffer_minus_stbox", - "file": "meos_cbuffer.h", - "role": "restriction", - "class": [ - "TCbuffer" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdistance_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "nad_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tcbuffer_stbox", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nai_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "shortestline_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "always_eq_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "teq_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "acontains_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acontains_geo_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acontains_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acontains_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acovers_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acovers_geo_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acovers_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "acovers_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adisjoint_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adisjoint_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adisjoint_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adwithin_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 3 - }, - { - "name": "adwithin_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 3 - }, - { - "name": "adwithin_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 3 - }, - { - "name": "aintersects_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "aintersects_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "aintersects_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "atouches_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "atouches_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "atouches_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "econtains_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "econtains_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "econtains_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ecovers_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ecovers_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ecovers_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ecovers_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "edisjoint_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "edisjoint_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "edwithin_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 3 - }, - { - "name": "edwithin_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 3 - }, - { - "name": "edwithin_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 3 - }, - { - "name": "eintersects_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "eintersects_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "eintersects_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "etouches_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "etouches_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "ever/always spatial-rel on 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "etouches_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always spatial-rel on 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tcontains_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcontains_geo_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcontains_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcontains_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcontains_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcovers_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcovers_geo_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcovers_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcovers_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tcovers_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdwithin_geo_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdwithin_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdwithin_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdwithin_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdisjoint_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdisjoint_geo_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdisjoint_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdisjoint_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdisjoint_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tintersects_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tintersects_geo_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tintersects_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tintersects_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tintersects_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttouches_geo_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttouches_tcbuffer_geo", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttouches_cbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttouches_tcbuffer_cbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "temporal spatial-rel lift on 1 temporal", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ttouches_tcbuffer_tcbuffer", - "file": "meos_cbuffer.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "temporal spatial-rel lift on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ensure_valid_cbuffer_cbuffer", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_cbuffer_geo", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_cbuffer_stbox", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_cbufferset_cbuffer", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_collinear", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "cbuffersegm_interpolate", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "struct Cbuffer *", - "n_params": 3 - }, - { - "name": "cbuffersegm_locate", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "long double", - "n_params": 3 - }, - { - "name": "cbuffer_parse", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "struct Cbuffer *", - "n_params": 2 - }, - { - "name": "cbuffer_wkt_out", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "cbuffer_point_p", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "const int *", - "n_params": 1 - }, - { - "name": "datum_cbuffer_round", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_transf_pj", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "struct Cbuffer *", - "n_params": 3 - }, - { - "name": "cbuffer_distance", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "double", - "n_params": 2 - }, - { - "name": "datum_cbuffer_distance", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffersegm_distance_turnpt", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 8 - }, - { - "name": "cbuffer_contains", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_covers", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_disjoint", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_intersects", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbuffer_dwithin", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "cbuffer_touches", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_cbuffer_contains", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_cbuffer_covers", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_cbuffer_disjoint", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_cbuffer_intersects", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_cbuffer_dwithin", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_cbuffer_touches", - "file": "cbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header cbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temptype_subtype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temptype_subtype_all", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tempsubtype_name", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "const char *", - "n_params": 1 - }, - { - "name": "tempsubtype_from_string", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "meosoper_name", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "const char *", - "n_params": 1 - }, - { - "name": "meosoper_from_string", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_catalog.h, ntemp=0)", - "return_c": "meosOper", - "n_params": 1 - }, - { - "name": "interptype_name", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "const char *", - "n_params": 1 - }, - { - "name": "interptype_from_string", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_catalog.h, ntemp=0)", - "return_c": "interpType", - "n_params": 1 - }, - { - "name": "meostype_name", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "const char *", - "n_params": 1 - }, - { - "name": "temptype_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "MeosType", - "n_params": 1 - }, - { - "name": "settype_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_catalog.h, ntemp=0)", - "return_c": "MeosType", - "n_params": 1 - }, - { - "name": "spantype_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_catalog.h, ntemp=0)", - "return_c": "MeosType", - "n_params": 1 - }, - { - "name": "spantype_spansettype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_catalog.h, ntemp=0)", - "return_c": "MeosType", - "n_params": 1 - }, - { - "name": "spansettype_spantype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_catalog.h, ntemp=0)", - "return_c": "MeosType", - "n_params": 1 - }, - { - "name": "basetype_spantype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_catalog.h, ntemp=0)", - "return_c": "MeosType", - "n_params": 1 - }, - { - "name": "basetype_settype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_catalog.h, ntemp=0)", - "return_c": "MeosType", - "n_params": 1 - }, - { - "name": "tnumber_basetype", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geo_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "meos_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "alphanum_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "alphanum_temptype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "time_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "set_basetype", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "set_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "numset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_numset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "timeset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "set_spantype", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_set_spantype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "alphanumset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geoset_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "GeomSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_geoset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spatialset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_spatialset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "span_basetype", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "span_canon_basetype", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "span_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "type_span_bbox", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "span_tbox_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_span_tbox_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "numspan_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "numspan_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_numspan_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "timespan_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "timespan_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spanset_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "timespanset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_timespanset_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_basetype", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temptype_supports_linear", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "basetype_byvalue", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "basetype_varlength", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "meostype_length", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "short", - "n_params": 1 - }, - { - "name": "talphanum_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "talpha_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TAlpha" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tnumber_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tnumber_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tnumber_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tnumber_spantype", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spatial_basetype", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tspatial_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TSpatial" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tspatial_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tpoint_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tpoint_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tgeo_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tgeo_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tgeo_type_all", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tgeo_type_all", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tgeometry_type", - "file": "meos_catalog.h", - "role": "accessor", - "class": [ - "TGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tgeometry_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tgeodetic_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tgeodetic_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_tnumber_tpoint_type", - "file": "meos_catalog.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "MEOS infra / catalog / utility", - "return_c": "int", - "n_params": 1 - }, - { - "name": "gsl_get_generation_rng", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "gsl_rng *", - "n_params": 0 - }, - { - "name": "gsl_get_aggregation_rng", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "gsl_rng *", - "n_params": 0 - }, - { - "name": "datum_ceil", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datum_degrees", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_float_round", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_floor", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datum_hash", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_hash_extended", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_radians", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "floatspan_round_set", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "set_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "set_out", - "file": "meos_internal.h", - "role": "output", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "span_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "span_out", - "file": "meos_internal.h", - "role": "output", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "spanset_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "spanset_out", - "file": "meos_internal.h", - "role": "output", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "set_make", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 4 - }, - { - "name": "set_make_exp", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 5 - }, - { - "name": "set_make_free", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 4 - }, - { - "name": "span_make", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 5 - }, - { - "name": "span_set", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 7 - }, - { - "name": "spanset_make_exp", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 5 - }, - { - "name": "spanset_make_free", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 4 - }, - { - "name": "set_span", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "set_spanset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "value_set_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "numspan_width", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "numspanset_width", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_end_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "set_mem_size", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "set_set_subspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "set_set_span", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "set_start_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "set_value_n", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "set_vals", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int ((*)(int *))()", - "n_params": 1 - }, - { - "name": "set_values", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int ((*)(int *))()", - "n_params": 1 - }, - { - "name": "spanset_lower", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spanset_mem_size", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "spanset_sps", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct Span **", - "n_params": 1 - }, - { - "name": "spanset_upper", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datespan_set_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "DateSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "floatspan_set_intspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "intspan_set_floatspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "IntSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "numset_shift_scale", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 5 - }, - { - "name": "numspan_expand", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "numspan_shift_scale", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 5 - }, - { - "name": "numspanset_shift_scale", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 5 - }, - { - "name": "set_compact", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "span_expand", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "spanset_compact", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tbox_expand_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TBox *", - "n_params": 3 - }, - { - "name": "textcat_textset_text_common", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 3 - }, - { - "name": "tstzspan_set_datespan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "adjacent_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "adjacent_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ovadj_span_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "left_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "lfnadj_span_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overleft_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "overright_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "right_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "bbox_type", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bbox_get_size", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "bbox_max_dims", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_bbox_eq", - "file": "meos_internal.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "temporal_bbox_cmp", - "file": "meos_internal.h", - "role": "predicate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "bbox_union_span_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "inter_span_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "intersection_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intersection_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "intersection_value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "intersection_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "mi_span_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "minus_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "minus_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "super_union_span_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 2 - }, - { - "name": "union_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_value_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_value_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "union_value_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "distance_set_set", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_set_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_span_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_span_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_spanset_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_spanset_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_spanset_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "distance_value_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "spanbase_extent_transfn", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "value_union_transfn", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Set *", - "n_params": 3 - }, - { - "name": "number_tstzspan_to_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TBox *", - "n_params": 3 - }, - { - "name": "number_timestamptz_to_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TBox *", - "n_params": 3 - }, - { - "name": "tbox_set", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "float_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "int_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "number_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "number_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TBox *", - "n_params": 2 - }, - { - "name": "numset_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "numspan_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "timestamptz_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tstzset_set_tbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tstzspan_set_tbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tbox_shift_scale_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TBox *", - "n_params": 5 - }, - { - "name": "tbox_expand", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "inter_tbox_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tboolinst_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TBoolInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tboolinst_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TBoolInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tboolseq_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TBoolSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tboolseq_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TBoolSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tboolseqset_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TBoolSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tboolseqset_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TBoolSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "temporal_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_out", - "file": "meos_internal.h", - "role": "output", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "temparr_out", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "char **", - "n_params": 3 - }, - { - "name": "tfloatinst_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TFloatInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tfloatinst_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TFloatInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tfloatseq_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TFloatSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tfloatseq_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TFloatSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tfloatseqset_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TFloatSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tfloatseqset_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TFloatSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tinstant_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 4 - }, - { - "name": "tinstant_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tinstant_out", - "file": "meos_internal.h", - "role": "output", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "tintinst_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TIntInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tintinst_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TIntInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tintseq_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TIntSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tintseq_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TIntSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tintseqset_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TIntSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tintseqset_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TIntSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tsequence_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 5 - }, - { - "name": "tsequence_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tsequence_out", - "file": "meos_internal.h", - "role": "output", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "tsequenceset_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 5 - }, - { - "name": "tsequenceset_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_out", - "file": "meos_internal.h", - "role": "output", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "ttextinst_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TTextInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "ttextinst_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TTextInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "ttextseq_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TTextSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "ttextseq_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TTextSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "ttextseqset_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TTextSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "ttextseqset_in", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TTextSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "temporal_from_mfjson", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "temporal_from_base_temp", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tinstant_copy", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tinstant_make", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tinstant_make_free", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tsequence_copy", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tsequence_from_base_temp", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tsequence_from_base_tstzset", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tsequence_from_base_tstzspan", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 4 - }, - { - "name": "tsequence_make_exp", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 7 - }, - { - "name": "tsequence_make_free", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 6 - }, - { - "name": "tsequenceset_copy", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tseqsetarr_to_tseqset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_from_base_temp", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_from_base_tstzspanset", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 4 - }, - { - "name": "tsequenceset_make_exp", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 4 - }, - { - "name": "tsequenceset_make_free", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "temporal_set_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tinstant_set_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tnumber_set_tbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tnumberinst_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tnumberseq_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tnumberseqset_set_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tsequence_set_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tsequenceset_set_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "temporal_end_inst", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_end_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_inst_n", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 2 - }, - { - "name": "temporal_insts_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant **", - "n_params": 2 - }, - { - "name": "temporal_max_inst_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_max_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_mem_size", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_min_inst_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_min_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_sequences_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TSequence **", - "n_params": 2 - }, - { - "name": "temporal_set_bbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "temporal_start_inst", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_start_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_values_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int ((*)(int *))()", - "n_params": 2 - }, - { - "name": "temporal_value_n", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "temporal_values", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int ((*)(int *))()", - "n_params": 2 - }, - { - "name": "tinstant_hash", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tinstant_insts", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant **", - "n_params": 2 - }, - { - "name": "tinstant_set_bbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tinstant_time", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tinstant_timestamps", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tinstant_value_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tinstant_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tinstant_value_at_timestamptz", - "file": "meos_internal.h", - "role": "restriction", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tinstant_values_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int ((*)(int *))()", - "n_params": 2 - }, - { - "name": "tnumber_set_span", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tnumberinst_valuespans", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tnumberseq_avg_val", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnumberseq_valuespans", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tnumberseqset_avg_val", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnumberseqset_valuespans", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tsequence_duration", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tsequence_end_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequence_hash", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequence_insts_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant **", - "n_params": 1 - }, - { - "name": "tsequence_max_inst_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 1 - }, - { - "name": "tsequence_max_val", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequence_min_inst_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 1 - }, - { - "name": "tsequence_min_val", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequence_segments", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence **", - "n_params": 2 - }, - { - "name": "tsequence_seqs", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TSequence **", - "n_params": 2 - }, - { - "name": "tsequence_start_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequence_time", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tsequence_timestamps", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tsequence_value_at_timestamptz", - "file": "meos_internal.h", - "role": "restriction", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tsequence_values_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int ((*)(int *))()", - "n_params": 2 - }, - { - "name": "tsequenceset_duration", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tsequenceset_end_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequenceset_hash", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequenceset_inst_n", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 2 - }, - { - "name": "tsequenceset_insts_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant **", - "n_params": 1 - }, - { - "name": "tsequenceset_max_inst_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 1 - }, - { - "name": "tsequenceset_max_val", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequenceset_min_inst_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TInstant *", - "n_params": 1 - }, - { - "name": "tsequenceset_min_val", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequenceset_num_instants", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequenceset_num_timestamps", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequenceset_segments", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence **", - "n_params": 2 - }, - { - "name": "tsequenceset_sequences_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "const struct TSequence **", - "n_params": 1 - }, - { - "name": "tsequenceset_start_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tsequenceset_time", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SpanSet *", - "n_params": 1 - }, - { - "name": "tsequenceset_timestamptz_n", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tsequenceset_timestamps", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tsequenceset_value_at_timestamptz", - "file": "meos_internal.h", - "role": "restriction", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tsequenceset_value_n", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tsequenceset_values_p", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int ((*)(int *))()", - "n_params": 2 - }, - { - "name": "temporal_restart", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "temporal_tsequence", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "temporal_tsequenceset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tinstant_shift_time", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tinstant_to_tsequence", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tinstant_to_tsequence_free", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tinstant_to_tsequenceset", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tnumber_shift_scale_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 5 - }, - { - "name": "tnumberinst_shift_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tnumberseq_shift_scale_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 5 - }, - { - "name": "tnumberseqset_shift_scale_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 5 - }, - { - "name": "tsequence_restart", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tsequence_set_interp", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tsequence_shift_scale_time", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tsequence_subseq", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 5 - }, - { - "name": "tsequence_to_tinstant", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tsequence_to_tsequenceset", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tsequence_to_tsequenceset_free", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tsequence_to_tsequenceset_interp", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequenceset_restart", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tsequenceset_set_interp", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tsequenceset_shift_scale_time", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_to_discrete", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tsequenceset_to_linear", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tsequenceset_to_step", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tsequenceset_to_tinstant", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tsequenceset_to_tsequence", - "file": "meos_internal.h", - "role": "conversion", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tinstant_merge", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tinstant_merge_array", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tsequence_append_tinstant", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 5 - }, - { - "name": "tsequence_append_tsequence", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequence_delete_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequence_delete_tstzset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequence_delete_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequence_delete_tstzspanset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequence_insert", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequence_merge", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tsequence_merge_array", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tsequenceset_append_tinstant", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 5 - }, - { - "name": "tsequenceset_append_tsequence", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_delete_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequenceset_delete_tstzset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequenceset_delete_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequenceset_delete_tstzspanset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequenceset_insert", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequenceset_merge", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequenceset_merge_array", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tsequence_expand_bbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tsequence_set_bbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tsequenceset_expand_bbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tsequenceset_set_bbox", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tcontseq_after_timestamptz", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tcontseq_before_timestamptz", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tcontseq_restrict_minmax", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tdiscseq_after_timestamptz", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tdiscseq_before_timestamptz", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tdiscseq_restrict_minmax", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "temporal_bbox_restrict_set", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_restrict_minmax", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_restrict_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_restrict_tstzset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_restrict_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_restrict_tstzspanset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_restrict_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_restrict_values", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "temporal_value_at_timestamptz", - "file": "meos_internal.h", - "role": "restriction", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tinstant_after_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tinstant_before_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tinstant_restrict_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tinstant_restrict_tstzspanset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tinstant_restrict_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tinstant_restrict_tstzset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tinstant_restrict_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tinstant_restrict_values", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tnumber_restrict_span", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tnumber_restrict_spanset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tnumberinst_restrict_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tnumberinst_restrict_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tnumberseqset_restrict_span", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tnumberseqset_restrict_spanset", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequence_at_timestamptz", - "file": "meos_internal.h", - "role": "restriction", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tsequence_restrict_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequence_restrict_tstzspanset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequenceset_after_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_before_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_restrict_minmax", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_restrict_tstzspan", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_restrict_tstzspanset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_restrict_timestamptz", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequenceset_restrict_tstzset", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tsequenceset_restrict_value", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequenceset_restrict_values", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tinstant_cmp", - "file": "meos_internal.h", - "role": "predicate", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tinstant_eq", - "file": "meos_internal.h", - "role": "predicate", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tsequence_cmp", - "file": "meos_internal.h", - "role": "predicate", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tsequence_eq", - "file": "meos_internal.h", - "role": "predicate", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tsequenceset_cmp", - "file": "meos_internal.h", - "role": "predicate", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tsequenceset_eq", - "file": "meos_internal.h", - "role": "predicate", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ge_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_gt_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_le_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_lt_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ge_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_gt_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_le_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_base_temporal", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_lt_temporal_base", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tnumberinst_abs", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tnumberseq_abs", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tnumberseq_angular_difference", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tnumberseq_delta_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tnumberseqset_abs", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tnumberseqset_angular_difference", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tnumberseqset_delta_value", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tdistance_tnumber_number", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "nad_tbox_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tnumber_number", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tnumber_tbox", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tnumber_tnumber", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 2 - }, - { - "name": "tnumberseq_integral", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnumberseq_twavg", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnumberseqset_integral", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnumberseqset_twavg", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "temporal_compact", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tsequence_compact", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tsequenceset_compact", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "temporal_skiplist_make", - "file": "meos_internal.h", - "role": "constructor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SkipList *", - "n_params": 0 - }, - { - "name": "skiplist_make", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct SkipList *", - "n_params": 4 - }, - { - "name": "skiplist_search", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "skiplist_free", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "skiplist_splice", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 7 - }, - { - "name": "temporal_skiplist_splice", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void", - "n_params": 5 - }, - { - "name": "skiplist_values", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void **", - "n_params": 1 - }, - { - "name": "skiplist_keys_values", - "file": "meos_internal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "void **", - "n_params": 2 - }, - { - "name": "temporal_app_tinst_transfn", - "file": "meos_internal.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 5 - }, - { - "name": "temporal_app_tseq_transfn", - "file": "meos_internal.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "span_bins", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "spanset_bins", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "tnumber_value_bins", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "tnumber_value_time_boxes", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TBox *", - "n_params": 6 - }, - { - "name": "tnumber_value_split", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal **", - "n_params": 5 - }, - { - "name": "tbox_get_value_time_tile", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct TBox *", - "n_params": 8 - }, - { - "name": "tnumber_value_time_split", - "file": "meos_internal.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal.h not public", - "return_c": "struct Temporal **", - "n_params": 8 - }, - { - "name": "double2_out", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "double2_set", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "double2_add", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "double2 *", - "n_params": 2 - }, - { - "name": "double2_eq", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "double3_out", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "double3_set", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "double3_add", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "double3 *", - "n_params": 2 - }, - { - "name": "double3_eq", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "double4_out", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "double4_set", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "void", - "n_params": 5 - }, - { - "name": "double4_add", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "double4 *", - "n_params": 2 - }, - { - "name": "double4_eq", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "double2_collinear", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "double3_collinear", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "double4_collinear", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "double2segm_interpolate", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "double2 *", - "n_params": 3 - }, - { - "name": "double3segm_interpolate", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "double3 *", - "n_params": 3 - }, - { - "name": "double4segm_interpolate", - "file": "doublen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header doublen.h not public", - "return_c": "double4 *", - "n_params": 3 - }, - { - "name": "pg_atoi", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ensure_has_X", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_has_Z", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_has_T", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_has_not_Z", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_not_null", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_one_not_null", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_one_true", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_interp", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_continuous", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_same_interp", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_continuous_interp", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_linear_interp", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_nonlinear_interp", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_common_dimension", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_temporal_isof_type", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_temporal_isof_basetype", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_temporal_isof_subtype", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_temporal_type", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tnumber_numspan", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tnumber_numspanset", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tnumber_tbox", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_temporal_set", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_temporal_temporal", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tnumber_tnumber", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_not_negative", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_positive", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "not_negative_datum", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_not_negative_datum", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "positive_datum", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_positive_datum", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_day_duration", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "positive_duration", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_positive_duration", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "temporal_bbox_ptr", - "file": "temporal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "void *", - "n_params": 1 - }, - { - "name": "intersection_temporal_temporal", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "mobilitydb_version", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "char *", - "n_params": 0 - }, - { - "name": "mobilitydb_full_version", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "char *", - "n_params": 0 - }, - { - "name": "round_fn", - "file": "temporal.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))())", - "n_params": 1 - }, - { - "name": "temporal_bbox_restrict_value", - "file": "temporal.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tcbuffer_cbuffer", - "file": "tcbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tcbuffer_geo", - "file": "tcbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tcbuffer_stbox", - "file": "tcbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tcbuffer_tcbuffer", - "file": "tcbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tcbuffersegm_intersection_value", - "file": "tcbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer.h not public", - "return_c": "int", - "n_params": 7 - }, - { - "name": "tcbuffersegm_intersection", - "file": "tcbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer.h not public", - "return_c": "int", - "n_params": 8 - }, - { - "name": "tcbuffersegm_dwithin_turnpt", - "file": "tcbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer.h not public", - "return_c": "int", - "n_params": 9 - }, - { - "name": "tcbuffersegm_distance_turnpt", - "file": "tcbuffer.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer.h not public", - "return_c": "int", - "n_params": 9 - }, - { - "name": "cbuffer_set_stbox", - "file": "tcbuffer_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_boxops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "cbufferarr_set_stbox", - "file": "tcbuffer_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_boxops.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "cbuffer_timestamptz_set_stbox", - "file": "tcbuffer_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_boxops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "cbuffer_tstzspan_set_stbox", - "file": "tcbuffer_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_boxops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tcbufferinst_set_stbox", - "file": "tcbuffer_boxops.h", - "role": "accessor", - "class": [ - "TCbufferInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tcbufferinstarr_set_stbox", - "file": "tcbuffer_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_boxops.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "tcbufferseq_expand_stbox", - "file": "tcbuffer_boxops.h", - "role": "accessor", - "class": [ - "TCbufferSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tcbufferinst_trav_area", - "file": "tcbuffer_spatialfuncs.h", - "role": "accessor", - "class": [ - "TCbufferInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tcbufferseq_trav_area", - "file": "tcbuffer_spatialfuncs.h", - "role": "accessor", - "class": [ - "TCbufferSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tcbufferseqset_trav_area", - "file": "tcbuffer_spatialfuncs.h", - "role": "accessor", - "class": [ - "TCbufferSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tcbuffersegm_trav_area", - "file": "tcbuffer_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tcbuffer_restrict_cbuffer", - "file": "tcbuffer_spatialfuncs.h", - "role": "accessor", - "class": [ - "TCbuffer" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tcbuffer_restrict_stbox", - "file": "tcbuffer_spatialfuncs.h", - "role": "accessor", - "class": [ - "TCbuffer" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "tcbuffer_restrict_geom", - "file": "tcbuffer_spatialfuncs.h", - "role": "accessor", - "class": [ - "TCbuffer" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "ea_contains_geo_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_contains_tcbuffer_geo", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_contains_tcbuffer_cbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_contains_cbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_geo_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_tcbuffer_geo", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_tcbuffer_cbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_cbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_tcbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_tcbuffer_geo", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_geo_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_tcbuffer_cbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_cbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_tcbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_intersects_tcbuffer_geo", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_intersects_geo_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_intersects_tcbuffer_cbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_intersects_cbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_intersects_tcbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_touches_tcbuffer_geo", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_touches_geo_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_touches_tcbuffer_cbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_touches_cbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_touches_tcbuffer_tcbuffer", - "file": "tcbuffer_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tinterrel_tcbuffer_cbuffer", - "file": "tcbuffer_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tinterrel_tcbuffer_geo", - "file": "tcbuffer_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tcbuffer_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "lwproj_lookup", - "file": "meos_transform.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 3 - }, - { - "name": "spheroid_init_from_srid", - "file": "meos_transform.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "srid_check_latlong", - "file": "meos_transform.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "void", - "n_params": 1 - }, - { - "name": "srid_is_latlong", - "file": "meos_transform.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geom_serialize", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geog_serialize", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "postgis_valid_typmod", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geo_as_wkt", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "box2d_to_lwgeom", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "box3d_to_lwgeom", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "POSTGIS2GEOS", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "struct GEOSGeom_t *", - "n_params": 1 - }, - { - "name": "GEOS2POSTGIS", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "geom_spatialrel", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "lwgeom_line_interpolate_point", - "file": "postgis_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_funcs.h not public", - "return_c": "int *", - "n_params": 4 - }, - { - "name": "point_get_coords", - "file": "stbox.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header stbox.h not public", - "return_c": "void", - "n_params": 5 - }, - { - "name": "tstzset_stbox_slice", - "file": "stbox.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header stbox.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tstzspanset_stbox_slice", - "file": "stbox.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header stbox.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "stbox_index_leaf_consistent", - "file": "stbox_index.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header stbox_index.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "stbox_gist_inner_consistent", - "file": "stbox_index.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header stbox_index.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "stbox_index_recheck", - "file": "stbox_index.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header stbox_index.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "mobilitydb_init", - "file": "tgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo.h not public", - "return_c": "void", - "n_params": 0 - }, - { - "name": "geo_stbox", - "file": "tgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo.h not public", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "stbox_geo", - "file": "tgeo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tcomp_geo_tgeo", - "file": "tgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tcomp_tgeo_geo", - "file": "tgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "ensure_geoaggstate", - "file": "tgeo_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_aggfuncs.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ensure_geoaggstate_state", - "file": "tgeo_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tpoint_transform_tcentroid", - "file": "tgeo_aggfuncs.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_aggfuncs.h not public", - "return_c": "struct Temporal **", - "n_params": 2 - }, - { - "name": "tpointinst_tcentroid_finalfn", - "file": "tgeo_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_aggfuncs.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tpointseq_tcentroid_finalfn", - "file": "tgeo_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_aggfuncs.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "point3d_min_dist", - "file": "tgeo_distance.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_distance.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "tgeompointsegm_distance_turnpt", - "file": "tgeo_distance.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_distance.h not public", - "return_c": "int", - "n_params": 9 - }, - { - "name": "tgeogpointsegm_distance_turnpt", - "file": "tgeo_distance.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_distance.h not public", - "return_c": "int", - "n_params": 9 - }, - { - "name": "tnumberinst_distance", - "file": "tgeo_distance.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_distance.h not public", - "return_c": "double", - "n_params": 2 - }, - { - "name": "tinstant_distance", - "file": "tgeo_distance.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_distance.h not public", - "return_c": "double", - "n_params": 3 - }, - { - "name": "tpointseq_at_geom", - "file": "tgeo_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_restrict.h not public", - "return_c": "struct TSequence **", - "n_params": 3 - }, - { - "name": "tpointseq_interperiods", - "file": "tgeo_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_restrict.h not public", - "return_c": "struct Span *", - "n_params": 3 - }, - { - "name": "datum_point4d", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "geopoint_cmp", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geopoint_eq", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geopoint_same", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_point_eq", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_point_same", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum2_point_eq", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum2_point_ne", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum2_point_same", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum2_point_nsame", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum2_geom_centroid", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datum2_geog_centroid", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "geo_extract_elements", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int **", - "n_params": 2 - }, - { - "name": "geo_serialize", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "geo_distance_fn", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))())", - "n_params": 1 - }, - { - "name": "pt_distance_fn", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))())", - "n_params": 1 - }, - { - "name": "datum_geom_distance2d", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geom_distance3d", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geog_distance", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_pt_distance2d", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_pt_distance3d", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spatial_flags", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "short", - "n_params": 2 - }, - { - "name": "ensure_srid_is_latlong", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_spatial_validity", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_not_geodetic", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_same_geodetic", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_geodetic_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_geodetic_tspatial_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_geodetic_tspatial_base", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_srid_known", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_same_srid", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_dimensionality", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_spatial_dimensionality", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_spatial_dimensionality", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_dimensionality_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_dimensionality_tspatial_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_dimensionality_tspatial_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_spatial_dimensionality_stbox_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_geodetic_stbox_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_has_Z_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_has_not_Z_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_has_M_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_has_not_M_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_not_geodetic_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_point_type", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_mline_type", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "circle_type", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_circle_type", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_not_empty", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_valid_stbox_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tspatial_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tspatial_base", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tspatial_tspatial", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_spatial_stbox_stbox", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tgeo_stbox", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_geo_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tgeo_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tgeo_tgeo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tpoint_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tpoint_tpoint", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "mline_type", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tpoint_get_coord", - "file": "tgeo_spatialfuncs.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "eacomp_tgeo_geo", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "closest_point2d_on_segment_ratio", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "long double", - "n_params": 4 - }, - { - "name": "closest_point3dz_on_segment_ratio", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "long double", - "n_params": 4 - }, - { - "name": "closest_point_on_segment_sphere", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "long double", - "n_params": 5 - }, - { - "name": "interpolate_point4d_spheroid", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "void", - "n_params": 5 - }, - { - "name": "geopoint_make", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 6 - }, - { - "name": "lwcircle_make", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 4 - }, - { - "name": "geocircle_make", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 4 - }, - { - "name": "pointsegm_interpolate", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "pointsegm_locate", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "long double", - "n_params": 4 - }, - { - "name": "tgeompointsegm_intersection", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 8 - }, - { - "name": "tgeogpointsegm_intersection", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 8 - }, - { - "name": "geopoint_collinear", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 6 - }, - { - "name": "lwpointarr_remove_duplicates", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int **", - "n_params": 3 - }, - { - "name": "lwpointarr_make_trajectory", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 3 - }, - { - "name": "lwline_make", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "lwcoll_from_points_lines", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int *", - "n_params": 4 - }, - { - "name": "tpointseq_stops_iter", - "file": "tgeo_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialfuncs.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "datum_geom_contains", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geom_covers", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geom_disjoint2d", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geom_disjoint3d", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geog_disjoint", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geom_intersects2d", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geom_intersects3d", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geog_intersects", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geom_touches", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_geom_dwithin2d", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_geom_dwithin3d", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_geog_dwithin", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_geom_relate_pattern", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "geo_disjoint_fn", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))())", - "n_params": 2 - }, - { - "name": "geo_disjoint_fn_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))())", - "n_params": 2 - }, - { - "name": "geo_intersects_fn", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))())", - "n_params": 2 - }, - { - "name": "geo_intersects_fn_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))())", - "n_params": 2 - }, - { - "name": "geo_dwithin_fn", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))(), int ((*)(int *))())", - "n_params": 2 - }, - { - "name": "geo_dwithin_fn_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int (*)(int ((*)(int *))(), int ((*)(int *))(), int ((*)(int *))())", - "n_params": 2 - }, - { - "name": "tpointsegm_tdwithin_turnpt", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 9 - }, - { - "name": "spatialrel_geo_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 6 - }, - { - "name": "spatialrel_tgeo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "ea_contains_geo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_contains_tgeo_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_contains_tgeo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_geo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_tgeo_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_tgeo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_geo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_tgeo_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_tgeo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_intersects_geo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_intersects_tgeo_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_intersects_tgeo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_touches_tpoint_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_touches_tgeo_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_touches_tgeo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_dwithin_tgeo_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "ea_dwithin_tgeo_tgeo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "ea_spatialrel_tspatial_geo", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "ea_spatialrel_tspatial_tspatial", - "file": "tgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tspatialrel_tspatial_base", - "file": "tgeo_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 6 - }, - { - "name": "tspatialrel_tspatial_tspatial", - "file": "tgeo_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 6 - }, - { - "name": "tinterrel_tgeo_geo", - "file": "tgeo_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tinterrel_tspatial_base", - "file": "tgeo_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "tinterrel_tspatial_tspatial", - "file": "tgeo_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdwithin_tspatial_tspatial", - "file": "tgeo_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 5 - }, - { - "name": "tdwithin_add_solutions", - "file": "tgeo_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tempspatialrels.h not public", - "return_c": "int", - "n_params": 10 - }, - { - "name": "tdwithin_tspatial_spatial", - "file": "tgeo_tempspatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tempspatialrels.h not public", - "return_c": "struct Temporal *", - "n_params": 5 - }, - { - "name": "bitmatrix_make", - "file": "tgeo_tile.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "BitMatrix *", - "n_params": 2 - }, - { - "name": "tpoint_set_tiles", - "file": "tgeo_tile.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tpoint_at_tile", - "file": "tgeo_tile.h", - "role": "restriction", - "class": [ - "TPoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "stbox_tile_state_set", - "file": "tgeo_tile.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "void", - "n_params": 13 - }, - { - "name": "stbox_tile_state_make", - "file": "tgeo_tile.h", - "role": "constructor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "struct STboxGridState *", - "n_params": 9 - }, - { - "name": "stbox_tile_state_next", - "file": "tgeo_tile.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "stbox_tile_state_get", - "file": "tgeo_tile.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tgeo_space_time_tile_init", - "file": "tgeo_tile.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "struct STboxGridState *", - "n_params": 10 - }, - { - "name": "stbox_space_time_tile", - "file": "tgeo_tile.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tgeo_tile.h not public", - "return_c": "struct STBox *", - "n_params": 10 - }, - { - "name": "create_trip", - "file": "tpoint_datagen.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tpoint_datagen.h not public", - "return_c": "struct TSequence *", - "n_params": 7 - }, - { - "name": "spatialarr_wkt_out", - "file": "tspatial.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial.h not public", - "return_c": "char **", - "n_params": 5 - }, - { - "name": "spatialbase_as_text", - "file": "tspatial.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "spatialbase_as_ewkt", - "file": "tspatial.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "point_transf_pj", - "file": "tspatial.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tgeoinst_set_stbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tgeoinstarr_set_stbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "tgeoseq_expand_stbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tspatialinst_set_stbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tspatialinstarr_set_stbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "void", - "n_params": 6 - }, - { - "name": "tspatialseqarr_set_stbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "tspatialseq_expand_stbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "spatialarr_set_bbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "boxop_tspatial_stbox", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "boxop_tspatial_tspatial", - "file": "tspatial_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_boxops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "srid_parse", - "file": "tspatial_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spatial_parse_elem", - "file": "tspatial_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "geo_parse", - "file": "tspatial_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "stbox_parse", - "file": "tspatial_parser.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "tpoint_parse", - "file": "tspatial_parser.h", - "role": "accessor", - "class": [ - "TPoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tspatialinst_parse", - "file": "tspatial_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "struct TInstant *", - "n_params": 4 - }, - { - "name": "tspatialseq_disc_parse", - "file": "tspatial_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tspatialseq_cont_parse", - "file": "tspatial_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "struct TSequence *", - "n_params": 5 - }, - { - "name": "tspatialseqset_parse", - "file": "tspatial_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 4 - }, - { - "name": "tspatial_parse", - "file": "tspatial_parser.h", - "role": "accessor", - "class": [ - "TSpatial" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tspatial_parser.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "proj_get_context", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct pj_ctx *", - "n_params": 0 - }, - { - "name": "datum_geo_round", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "point_round", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "stbox_set", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 12 - }, - { - "name": "gbox_set_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "geo_set_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "geoarr_set_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "spatial_set_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "spatialset_set_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "stbox_set_box3d", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "stbox_set_gbox", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tstzset_set_stbox", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "TstzSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tstzspan_set_stbox", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tstzspanset_set_stbox", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "TstzSpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "stbox_expand", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "STBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "inter_stbox_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tgeogpointinst_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeogPointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tgeogpointinst_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeogPointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tgeogpointseq_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeogPointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tgeogpointseq_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeogPointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tgeogpointseqset_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeogPointSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tgeogpointseqset_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeogPointSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tgeompointinst_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeomPointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tgeompointinst_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeomPointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tgeompointseq_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeomPointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tgeompointseq_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeomPointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tgeompointseqset_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeomPointSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tgeompointseqset_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeomPointSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tgeographyinst_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeographyInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tgeographyinst_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeographyInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tgeographyseq_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeographySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tgeographyseq_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeographySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tgeographyseqset_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeographySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tgeographyseqset_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeographySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tgeometryinst_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tgeometryinst_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tgeometryseq_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tgeometryseq_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tgeometryseqset_from_mfjson", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tgeometryseqset_in", - "file": "meos_internal_geo.h", - "role": "constructor", - "class": [ - "TGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tspatial_set_stbox", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "TSpatial" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tspatialseq_set_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tspatialseqset_set_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tgeo_restrict_elevation", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tgeo_restrict_geom", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tgeo_restrict_stbox", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "tgeoinst_restrict_geom", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tgeoinst_restrict_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 4 - }, - { - "name": "tgeoseq_restrict_geom", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tgeoseq_restrict_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "tgeoseqset_restrict_geom", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tgeoseqset_restrict_stbox", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 4 - }, - { - "name": "spatial_srid", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spatial_set_srid", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tspatialinst_srid", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tpointseq_azimuth", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tpointseq_cumulative_length", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tpointseq_is_simple", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tpointseq_length", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tpointseq_linear_trajectory", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tgeoseq_stboxes", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "tgeoseq_split_n_stboxes", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "tpointseqset_azimuth", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tpointseqset_cumulative_length", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tpointseqset_is_simple", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tpointseqset_length", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tgeoseqset_stboxes", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "tgeoseqset_split_n_stboxes", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct STBox *", - "n_params": 3 - }, - { - "name": "tgeominst_tgeoginst", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tgeomseq_tgeogseq", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tgeomseqset_tgeogseqset", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tgeom_tgeog", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tgeo_tpoint", - "file": "meos_internal_geo.h", - "role": "accessor", - "class": [ - "TGeo" - ], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tspatialinst_set_srid", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tpointseq_make_simple", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence **", - "n_params": 2 - }, - { - "name": "tspatialseq_set_srid", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tpointseqset_make_simple", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "struct TSequence **", - "n_params": 2 - }, - { - "name": "tspatialseqset_set_srid", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tpointseq_twcentroid", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tpointseqset_twcentroid", - "file": "meos_internal_geo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header meos_internal_geo.h not public", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "npoint_as_ewkt", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "npoint_as_hexwkb", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "npoint_as_text", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "npoint_as_wkb", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "npoint_from_hexwkb", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Npoint *", - "n_params": 1 - }, - { - "name": "npoint_from_wkb", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Npoint *", - "n_params": 2 - }, - { - "name": "npoint_in", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Npoint *", - "n_params": 1 - }, - { - "name": "npoint_out", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "nsegment_in", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Nsegment *", - "n_params": 1 - }, - { - "name": "nsegment_out", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "npoint_make", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "struct Npoint *", - "n_params": 2 - }, - { - "name": "nsegment_make", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "make/from_base of instant/scalar", - "return_c": "struct Nsegment *", - "n_params": 3 - }, - { - "name": "geompoint_to_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_npoint.h, ntemp=0)", - "return_c": "struct Npoint *", - "n_params": 1 - }, - { - "name": "geom_to_nsegment", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Nsegment *", - "n_params": 1 - }, - { - "name": "npoint_to_geompoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "npoint_to_nsegment", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Nsegment *", - "n_params": 1 - }, - { - "name": "npoint_to_stbox", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "nsegment_to_geom", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "nsegment_to_stbox", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "npoint_hash", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 1 - }, - { - "name": "npoint_hash_extended", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_position", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 1 - }, - { - "name": "npoint_route", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "nsegment_end_position", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_npoint.h, ntemp=0)", - "return_c": "double", - "n_params": 1 - }, - { - "name": "nsegment_route", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "nsegment_start_position", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_npoint.h, ntemp=0)", - "return_c": "double", - "n_params": 1 - }, - { - "name": "route_exists", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "route_geom", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_npoint.h, ntemp=0)", - "return_c": "const int *", - "n_params": 1 - }, - { - "name": "route_length", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "sequence-derived metric", - "return_c": "double", - "n_params": 1 - }, - { - "name": "npoint_round", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct Npoint *", - "n_params": 2 - }, - { - "name": "nsegment_round", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct Nsegment *", - "n_params": 2 - }, - { - "name": "get_srid_ways", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 0 - }, - { - "name": "npoint_srid", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "nsegment_srid", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 1 - }, - { - "name": "npoint_timestamptz_to_stbox", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "npoint_tstzspan_to_stbox", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "npoint_cmp", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_eq", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_ge", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_gt", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_le", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_lt", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_ne", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_same", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nsegment_cmp", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nsegment_eq", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nsegment_ge", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nsegment_gt", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nsegment_le", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nsegment_lt", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "nsegment_ne", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "low", - "reason": "scalar in/out (default-stateless catch-all)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npointset_in", - "file": "meos_npoint.h", - "role": "constructor", - "class": [ - "NpointSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "npointset_out", - "file": "meos_npoint.h", - "role": "output", - "class": [ - "NpointSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "npointset_make", - "file": "meos_npoint.h", - "role": "constructor", - "class": [ - "NpointSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "npoint_to_set", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "npointset_end_value", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "NpointSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Npoint *", - "n_params": 1 - }, - { - "name": "npointset_routes", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "NpointSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "npointset_start_value", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "NpointSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Npoint *", - "n_params": 1 - }, - { - "name": "npointset_value_n", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "NpointSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "npointset_values", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "NpointSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Npoint **", - "n_params": 1 - }, - { - "name": "contained_npoint_set", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "topology/position rel on 2 scalars (box/span algebra)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "intersection_npoint_set", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_npoint.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_npoint_set", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "npoint_union_transfn", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_npoint_set", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_npoint.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "tnpoint_in", - "file": "meos_npoint.h", - "role": "constructor", - "class": [ - "TNpoint" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnpoint_from_mfjson", - "file": "meos_npoint.h", - "role": "constructor", - "class": [ - "TNpoint" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnpoint_out", - "file": "meos_npoint.h", - "role": "output", - "class": [ - "TNpoint" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "tnpointinst_make", - "file": "meos_npoint.h", - "role": "constructor", - "class": [ - "TNpointInst" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tgeompoint_to_tnpoint", - "file": "meos_npoint.h", - "role": "conversion", - "class": [ - "TGeomPoint" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnpoint_to_tgeompoint", - "file": "meos_npoint.h", - "role": "conversion", - "class": [ - "TNpoint" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnpoint_cumulative_length", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnpoint_length", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tnpoint_positions", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Nsegment **", - "n_params": 2 - }, - { - "name": "tnpoint_route", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tnpoint_routes", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tnpoint_speed", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tnpoint_trajectory", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tnpoint_twcentroid", - "file": "meos_npoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tnpoint_at_geom", - "file": "meos_npoint.h", - "role": "restriction", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnpoint_at_npoint", - "file": "meos_npoint.h", - "role": "restriction", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnpoint_at_npointset", - "file": "meos_npoint.h", - "role": "restriction", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnpoint_at_stbox", - "file": "meos_npoint.h", - "role": "restriction", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tnpoint_minus_geom", - "file": "meos_npoint.h", - "role": "restriction", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnpoint_minus_npoint", - "file": "meos_npoint.h", - "role": "restriction", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnpoint_minus_npointset", - "file": "meos_npoint.h", - "role": "restriction", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tnpoint_minus_stbox", - "file": "meos_npoint.h", - "role": "restriction", - "class": [ - "TNpoint" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdistance_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tnpoint_point", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tnpoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "nad_tnpoint_geo", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tnpoint_stbox", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tnpoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nai_tnpoint_geo", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_tnpoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "shortestline_tnpoint_geo", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_tnpoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "tnpoint_tcentroid_transfn", - "file": "meos_npoint.h", - "role": "aggregate", - "class": [ - "TNpoint" - ], - "tier": "windowed", - "confidence": "high", - "reason": "role=aggregate", - "return_c": "struct SkipList *", - "n_params": 2 - }, - { - "name": "always_eq_npoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tnpoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_npoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tnpoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_npoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tnpoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_npoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tnpoint_tnpoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "teq_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_tnpoint_npoint", - "file": "meos_npoint.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "pose_as_ewkt", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "pose_as_hexwkb", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "pose_as_text", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "pose_as_wkb", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "unsigned char *", - "n_params": 3 - }, - { - "name": "pose_from_wkb", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Pose *", - "n_params": 2 - }, - { - "name": "pose_from_hexwkb", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Pose *", - "n_params": 1 - }, - { - "name": "pose_in", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Pose *", - "n_params": 1 - }, - { - "name": "pose_out", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "pose_copy", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Pose *", - "n_params": 1 - }, - { - "name": "pose_make_2d", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Pose *", - "n_params": 4 - }, - { - "name": "pose_make_3d", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Pose *", - "n_params": 8 - }, - { - "name": "pose_make_point2d", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Pose *", - "n_params": 2 - }, - { - "name": "pose_make_point3d", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Pose *", - "n_params": 5 - }, - { - "name": "pose_to_point", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "pose_to_stbox", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 1 - }, - { - "name": "pose_hash", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 1 - }, - { - "name": "pose_hash_extended", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_orientation", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double *", - "n_params": 1 - }, - { - "name": "pose_rotation", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "double", - "n_params": 1 - }, - { - "name": "pose_round", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct Pose *", - "n_params": 2 - }, - { - "name": "posearr_round", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "transform/normalize (pure)", - "return_c": "struct Pose **", - "n_params": 3 - }, - { - "name": "pose_set_srid", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "void", - "n_params": 2 - }, - { - "name": "pose_srid", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 1 - }, - { - "name": "pose_transform", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Pose *", - "n_params": 2 - }, - { - "name": "pose_transform_pipeline", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Pose *", - "n_params": 4 - }, - { - "name": "pose_tstzspan_to_stbox", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "pose_timestamptz_to_stbox", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct STBox *", - "n_params": 2 - }, - { - "name": "distance_pose_geo", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_pose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "distance_pose_stbox", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "pose_cmp", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_eq", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_ge", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_gt", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_le", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_lt", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_ne", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "scalar comparison/hash", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_nsame", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_same", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "int", - "n_params": 2 - }, - { - "name": "poseset_in", - "file": "meos_pose.h", - "role": "constructor", - "class": [ - "PoseSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "poseset_out", - "file": "meos_pose.h", - "role": "output", - "class": [ - "PoseSet" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "poseset_make", - "file": "meos_pose.h", - "role": "constructor", - "class": [ - "PoseSet" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "pose_to_set", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "name pattern is _to_", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "poseset_end_value", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "PoseSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Pose *", - "n_params": 1 - }, - { - "name": "poseset_start_value", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "PoseSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Pose *", - "n_params": 1 - }, - { - "name": "poseset_value_n", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "PoseSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "poseset_values", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "PoseSet" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Pose **", - "n_params": 1 - }, - { - "name": "contained_pose_set", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "topology/position rel on 2 scalars (box/span algebra)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_set_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "int", - "n_params": 2 - }, - { - "name": "intersection_pose_set", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_pose.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "intersection_set_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_pose_set", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "minus_set_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "restriction name pattern", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "pose_union_transfn", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_pose_set", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "ambiguous", - "confidence": "low", - "reason": "no rule (role=None, hdr=meos_pose.h, ntemp=0)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "union_set_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "set/span/box algebra (pure)", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "tpose_in", - "file": "meos_pose.h", - "role": "constructor", - "class": [ - "TPose" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpose_make", - "file": "meos_pose.h", - "role": "constructor", - "class": [ - "TPose" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpose_to_tpoint", - "file": "meos_pose.h", - "role": "conversion", - "class": [ - "TPose" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpose_end_value", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Pose *", - "n_params": 1 - }, - { - "name": "tpose_points", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tpose_rotation", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "tpose_start_value", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Pose *", - "n_params": 1 - }, - { - "name": "tpose_trajectory", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "tpose_value_at_timestamptz", - "file": "meos_pose.h", - "role": "restriction", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tpose_value_n", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tpose_values", - "file": "meos_pose.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Pose **", - "n_params": 2 - }, - { - "name": "tpose_at_geom", - "file": "meos_pose.h", - "role": "restriction", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpose_at_stbox", - "file": "meos_pose.h", - "role": "restriction", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tpose_at_pose", - "file": "meos_pose.h", - "role": "restriction", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpose_minus_geom", - "file": "meos_pose.h", - "role": "restriction", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpose_minus_pose", - "file": "meos_pose.h", - "role": "restriction", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tpose_minus_stbox", - "file": "meos_pose.h", - "role": "restriction", - "class": [ - "TPose" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=restriction", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdistance_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tpose_point", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_tpose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "nad_tpose_geo", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tpose_stbox", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_tpose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nai_tpose_geo", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_tpose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "shortestline_tpose_geo", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_tpose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "always_eq_pose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_tpose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_pose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_tpose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_pose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_tpose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_pose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_tpose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "teq_pose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_pose_tpose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_tpose_pose", - "file": "meos_pose.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "trgeo_out", - "file": "meos_rgeo.h", - "role": "output", - "class": [ - "TRGeometry" - ], - "tier": "io-meta", - "confidence": "high", - "reason": "IO/serialization", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "trgeoinst_make", - "file": "meos_rgeo.h", - "role": "constructor", - "class": [ - "TRGeometryInst" - ], - "tier": "stateless", - "confidence": "high", - "reason": "constructor of instant/scalar", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "geo_tpose_to_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "medium", - "reason": "base-type fn, default pure", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "trgeo_to_tpose", - "file": "meos_rgeo.h", - "role": "conversion", - "class": [ - "TRGeometry" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "trgeo_to_tpoint", - "file": "meos_rgeo.h", - "role": "conversion", - "class": [ - "TRGeometry" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "trgeo_end_instant", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "trgeo_end_sequence", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "trgeo_end_value", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "trgeo_geom", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "trgeo_instant_n", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "trgeo_instants", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant **", - "n_params": 2 - }, - { - "name": "trgeo_points", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "trgeo_rotation", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 1 - }, - { - "name": "trgeo_segments", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence **", - "n_params": 2 - }, - { - "name": "trgeo_sequence_n", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "trgeo_sequences", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence **", - "n_params": 2 - }, - { - "name": "trgeo_start_instant", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "trgeo_start_sequence", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "trgeo_start_value", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 1 - }, - { - "name": "trgeo_value_n", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int", - "n_params": 3 - }, - { - "name": "trgeo_traversed_area", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "trgeo_append_tinstant", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 6 - }, - { - "name": "trgeo_append_tsequence", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_delete_timestamptz", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_delete_tstzset", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_delete_tstzspan", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_delete_tstzspanset", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_round", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "trgeo_set_interp", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "trgeo_to_tinstant", - "file": "meos_rgeo.h", - "role": "conversion", - "class": [ - "TRGeometry" - ], - "tier": "stateless", - "confidence": "high", - "reason": "role=conversion", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "trgeo_after_timestamptz", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_before_timestamptz", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_restrict_value", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_restrict_values", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_restrict_timestamptz", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_restrict_tstzset", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_restrict_tstzspan", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "trgeo_restrict_tstzspanset", - "file": "meos_rgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "bounded-state", - "confidence": "high", - "reason": "role=accessor", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdistance_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_trgeo_tpoint", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tdistance_trgeo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "nad_stbox_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_trgeo_stbox", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_trgeo_tpoint", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nad_trgeo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "double", - "n_params": 2 - }, - { - "name": "nai_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_trgeo_tpoint", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "nai_trgeo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "shortestline_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "bounded-state", - "confidence": "high", - "reason": "distance op", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_trgeo_tpoint", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "shortestline_trgeo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "distance on 2 temporals", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "always_eq_geo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_eq_trgeo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_geo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "always_ne_trgeo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_geo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_eq_trgeo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_geo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "windowed", - "confidence": "high", - "reason": "ever/always over 1 temporal", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ever_ne_trgeo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "cross-stream", - "confidence": "high", - "reason": "ever/always over 2 temporals", - "return_c": "int", - "n_params": 2 - }, - { - "name": "teq_geo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "teq_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_geo_trgeo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tne_trgeo_geo", - "file": "meos_rgeo.h", - "role": null, - "class": [], - "tier": "stateless", - "confidence": "high", - "reason": "temporal comparison (per-instant)", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ensure_valid_tnpoint_npoint", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tnpoint_npointset", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tnpoint_geo", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tnpoint_stbox", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tnpoint_tnpoint", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tnpointsegm_intersection", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 8 - }, - { - "name": "common_rid_tnpoint_npoint", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "common_rid_tnpoint_npointset", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "common_rid_tnpoint_tnpoint", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_collinear", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "npointsegm_interpolate", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Npoint *", - "n_params": 3 - }, - { - "name": "npointsegm_locate", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "long double", - "n_params": 3 - }, - { - "name": "npointarr_geom", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "nsegmentarr_geom", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int *", - "n_params": 2 - }, - { - "name": "nsegmentarr_normalize", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Nsegment **", - "n_params": 2 - }, - { - "name": "npoint_wkt_out", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "char *", - "n_params": 2 - }, - { - "name": "npoint_set", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "nsegment_set", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "datum_npoint_round", - "file": "tnpoint.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tnpointinst_tgeompointinst", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tnpointseq_tgeompointseq_disc", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tnpointseq_tgeompointseq_cont", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tnpointseqset_tgeompointseqset", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tgeompointinst_tnpointinst", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TGeomPointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "tgeompointseq_tnpointseq", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TGeomPointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "tgeompointseqset_tnpointseqset", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TGeomPointSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tnpointinst_positions", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Nsegment **", - "n_params": 1 - }, - { - "name": "tnpointseq_positions", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Nsegment **", - "n_params": 2 - }, - { - "name": "tnpointseqset_positions", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Nsegment **", - "n_params": 2 - }, - { - "name": "tnpointinst_route", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tnpointinst_routes", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tnpointseq_disc_routes", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tnpointseq_cont_routes", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tnpointseqset_routes", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Set *", - "n_params": 1 - }, - { - "name": "tnpointseq_linear_positions", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Nsegment *", - "n_params": 1 - }, - { - "name": "tnpoint_restrict_stbox", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "tnpoint_restrict_npoint", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tnpoint_restrict_npointset", - "file": "tnpoint.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "npoint_set_stbox", - "file": "tnpoint_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_boxops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npointarr_set_stbox", - "file": "tnpoint_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_boxops.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "nsegment_set_stbox", - "file": "tnpoint_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_boxops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_timestamptz_set_stbox", - "file": "tnpoint_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_boxops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "npoint_tstzspan_set_stbox", - "file": "tnpoint_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_boxops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tnpointinst_set_stbox", - "file": "tnpoint_boxops.h", - "role": "accessor", - "class": [ - "TNpointInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tnpointinstarr_set_stbox", - "file": "tnpoint_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_boxops.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "tnpointseq_expand_stbox", - "file": "tnpoint_boxops.h", - "role": "accessor", - "class": [ - "TNpointSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "datum_npoint_distance", - "file": "tnpoint_distance.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_distance.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "npoint_parse", - "file": "tnpoint_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_parser.h not public", - "return_c": "struct Npoint *", - "n_params": 2 - }, - { - "name": "nsegment_parse", - "file": "tnpoint_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_parser.h not public", - "return_c": "struct Nsegment *", - "n_params": 1 - }, - { - "name": "contains_rid_tnpoint_bigint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "contained_rid_tnpoint_bigint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "same_rid_tnpoint_bigint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "overlaps_rid_tnpoint_bigintset", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "contains_rid_tnpoint_bigintset", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "contained_rid_tnpoint_bigintset", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "same_rid_tnpoint_bigintset", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "contains_rid_tnpoint_npoint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "contained_rid_npoint_tnpoint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "same_rid_tnpoint_npoint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "overlaps_rid_tnpoint_tnpoint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contains_rid_tnpoint_tnpoint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "contained_rid_tnpoint_tnpoint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "same_rid_tnpoint_tnpoint", - "file": "tnpoint_routeops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_routeops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_rid_tnpointinst", - "file": "tnpoint_spatialfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_spatialfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tnpoint_restrict_geom", - "file": "tnpoint_spatialfuncs.h", - "role": "accessor", - "class": [ - "TNpoint" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnpoint_spatialfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "ensure_valid_pose_geo", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_pose_stbox", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_pose_pose", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_poseset_pose", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_collinear", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "posesegm_interpolate", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "struct Pose *", - "n_params": 3 - }, - { - "name": "posesegm_locate", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "long double", - "n_params": 3 - }, - { - "name": "pose_wkt_out", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "pose_parse", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "struct Pose *", - "n_params": 2 - }, - { - "name": "datum_pose_point", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datum_pose_rotation", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datum_pose_round", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_distance", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "pose_set_stbox", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "posearr_set_stbox", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "pose_timestamptz_set_stbox", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "pose_tstzspan_set_stbox", - "file": "pose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header pose.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ensure_valid_tpose_geo", - "file": "tpose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tpose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tpose_pose", - "file": "tpose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tpose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tpose_stbox", - "file": "tpose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tpose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_tpose_tpose", - "file": "tpose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tpose.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tposesegm_intersection_value", - "file": "tpose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tpose.h not public", - "return_c": "int", - "n_params": 7 - }, - { - "name": "tposesegm_intersection", - "file": "tpose.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tpose.h not public", - "return_c": "int", - "n_params": 8 - }, - { - "name": "tposeinst_set_stbox", - "file": "tpose_boxops.h", - "role": "accessor", - "class": [ - "TPoseInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tpose_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tposeinstarr_set_stbox", - "file": "tpose_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tpose_boxops.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "tposeseq_expand_stbox", - "file": "tpose_boxops.h", - "role": "accessor", - "class": [ - "TPoseSeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tpose_boxops.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tpose_restrict_geom", - "file": "tpose_spatialfuncs.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tpose_spatialfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tpose_restrict_stbox", - "file": "tpose_spatialfuncs.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tpose_spatialfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "tpose_restrict_elevation", - "file": "tpose_spatialfuncs.h", - "role": "accessor", - "class": [ - "TPose" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tpose_spatialfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "geo_get_srid", - "file": "postgis_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgis_ext_defs.in.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "date_in", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "date_out", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "interval_cmp", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "interval_in", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "Interval *", - "n_params": 2 - }, - { - "name": "interval_out", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "time_in", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "long", - "n_params": 2 - }, - { - "name": "time_out", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "timestamp_in", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "long", - "n_params": 2 - }, - { - "name": "timestamp_out", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "timestamptz_in", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "long", - "n_params": 2 - }, - { - "name": "timestamptz_out", - "file": "postgres_ext_defs.in.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_ext_defs.in.h not public", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "ensure_has_geom", - "file": "trgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_valid_trgeo_geo", - "file": "trgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_trgeo_stbox", - "file": "trgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_trgeo_trgeo", - "file": "trgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_trgeo_tpoint", - "file": "trgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "trgeo_geom_p", - "file": "trgeo.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "const GSERIALIZED *", - "n_params": 1 - }, - { - "name": "trgeo_wkt_out", - "file": "trgeo.h", - "role": "output", - "class": [ - "TRGeometry" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "geo_tposeinst_to_trgeo", - "file": "trgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "geo_tposeseq_to_trgeo", - "file": "trgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "geo_tposeseqset_to_trgeo", - "file": "trgeo.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "trgeo_value_at_timestamptz", - "file": "trgeo.h", - "role": "restriction", - "class": [ - "TRGeometry" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "trgeoinst_geom_p", - "file": "trgeo_inst.h", - "role": "accessor", - "class": [ - "TRGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_inst.h not public", - "return_c": "const GSERIALIZED *", - "n_params": 1 - }, - { - "name": "trgeoinst_pose_varsize", - "file": "trgeo_inst.h", - "role": "accessor", - "class": [ - "TRGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_inst.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "trgeoinst_set_pose", - "file": "trgeo_inst.h", - "role": "accessor", - "class": [ - "TRGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_inst.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "trgeoinst_tposeinst", - "file": "trgeo_inst.h", - "role": "accessor", - "class": [ - "TRGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_inst.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "trgeoinst_make1", - "file": "trgeo_inst.h", - "role": "accessor", - "class": [ - "TRGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_inst.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "trgeoseq_to_tinstant", - "file": "trgeo_inst.h", - "role": "conversion", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_inst.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "trgeoseqset_to_tinstant", - "file": "trgeo_inst.h", - "role": "conversion", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_inst.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "trgeoseq_geom_p", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "const GSERIALIZED *", - "n_params": 1 - }, - { - "name": "trgeoseq_pose_varsize", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "trgeoseq_set_pose", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "trgeoseq_tposeseq", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "trgeoseq_make_valid", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "int", - "n_params": 6 - }, - { - "name": "trgeoseq_make1_exp", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "struct TSequence *", - "n_params": 8 - }, - { - "name": "trgeoseq_make1", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "struct TSequence *", - "n_params": 7 - }, - { - "name": "trgeoseq_make_exp", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "struct TSequence *", - "n_params": 8 - }, - { - "name": "trgeoseq_make", - "file": "trgeo_seq.h", - "role": "constructor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "struct TSequence *", - "n_params": 7 - }, - { - "name": "trgeoseq_make_free_exp", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "struct TSequence *", - "n_params": 8 - }, - { - "name": "trgeoseq_make_free", - "file": "trgeo_seq.h", - "role": "accessor", - "class": [ - "TRGeometrySeq" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "struct TSequence *", - "n_params": 7 - }, - { - "name": "trgeoinst_to_tsequence", - "file": "trgeo_seq.h", - "role": "conversion", - "class": [ - "TRGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seq.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "trgeoseqset_geom_p", - "file": "trgeo_seqset.h", - "role": "accessor", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "const GSERIALIZED *", - "n_params": 1 - }, - { - "name": "trgeoseqset_tposeseqset", - "file": "trgeo_seqset.h", - "role": "accessor", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "trgeoseqset_make1_exp", - "file": "trgeo_seqset.h", - "role": "accessor", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 5 - }, - { - "name": "trgeoseqset_make_exp", - "file": "trgeo_seqset.h", - "role": "accessor", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 5 - }, - { - "name": "trgeoseqset_make", - "file": "trgeo_seqset.h", - "role": "constructor", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 4 - }, - { - "name": "trgeoseqset_make_free", - "file": "trgeo_seqset.h", - "role": "accessor", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 4 - }, - { - "name": "trgeoseqset_make_gaps", - "file": "trgeo_seqset.h", - "role": "accessor", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 6 - }, - { - "name": "trgeoseqset_to_tsequence", - "file": "trgeo_seqset.h", - "role": "conversion", - "class": [ - "TRGeometrySeqSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequence *", - "n_params": 1 - }, - { - "name": "trgeo_to_tsequence", - "file": "trgeo_seqset.h", - "role": "conversion", - "class": [ - "TRGeometry" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "trgeo_to_tsequenceset", - "file": "trgeo_seqset.h", - "role": "conversion", - "class": [ - "TRGeometry" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_seqset.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "trgeoinst_set_stbox", - "file": "trgeo_boxops.h", - "role": "accessor", - "class": [ - "TRGeometryInst" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_boxops.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "trgeoinstarr_static_stbox", - "file": "trgeo_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_boxops.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "trgeoinstarr_rotating_stbox", - "file": "trgeo_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_boxops.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "trgeoinstarr_compute_bbox", - "file": "trgeo_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_boxops.h not public", - "return_c": "void", - "n_params": 5 - }, - { - "name": "trgeo_parse", - "file": "trgeo_parser.h", - "role": "accessor", - "class": [ - "TRGeometry" - ], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_parser.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "ea_contains_geo_trgeo", - "file": "trgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_geo_trgeo", - "file": "trgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_covers_trgeo_geo", - "file": "trgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ea_disjoint_trgeo_geo", - "file": "trgeo_spatialrels.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_spatialrels.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ensure_same_geom", - "file": "trgeo_utils.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_utils.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "lwgeom_apply_pose", - "file": "trgeo_utils.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_utils.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "geom_radius", - "file": "trgeo_utils.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_utils.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "v_clip_tpoly_point", - "file": "trgeo_vclip.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_vclip.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "v_clip_tpoly_tpoly", - "file": "trgeo_vclip.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_vclip.h not public", - "return_c": "int", - "n_params": 7 - }, - { - "name": "apply_pose_point4d", - "file": "trgeo_vclip.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header trgeo_vclip.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tfunc_tinstant", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tfunc_tsequence", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tfunc_tsequenceset", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tfunc_temporal", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "tfunc_tinstant_base", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tfunc_tsequence_base", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tfunc_tsequenceset_base", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tfunc_temporal_base", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tfunc_tinstant_tinstant", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tfunc_tdiscseq_tdiscseq", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tfunc_tcontseq_tcontseq", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tfunc_tsequenceset_tsequenceset", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tfunc_temporal_temporal", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "eafunc_temporal_base", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "eafunc_temporal_temporal", - "file": "lifting.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header lifting.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "int4_in", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "int4_out", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "int8_in", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "long", - "n_params": 1 - }, - { - "name": "int8_out", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "char *", - "n_params": 1 - }, - { - "name": "float8_in", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "pg_dsin", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "pg_dcos", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "pg_datan", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "pg_datan2", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "interval_negate", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "Interval *", - "n_params": 1 - }, - { - "name": "pg_interval_justify_hours", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "Interval *", - "n_params": 1 - }, - { - "name": "hash_bytes_uint32", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "unsigned int", - "n_params": 1 - }, - { - "name": "pg_hashint8", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "unsigned int", - "n_params": 1 - }, - { - "name": "pg_hashfloat8", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "unsigned int", - "n_params": 1 - }, - { - "name": "hash_bytes_uint32_extended", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "unsigned long", - "n_params": 2 - }, - { - "name": "pg_hashint8extended", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "unsigned long", - "n_params": 2 - }, - { - "name": "pg_hashfloat8extended", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "unsigned long", - "n_params": 2 - }, - { - "name": "pg_hashtext", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "unsigned int", - "n_params": 1 - }, - { - "name": "pg_hashtextextended", - "file": "postgres_types.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header postgres_types.h not public", - "return_c": "unsigned long", - "n_params": 2 - }, - { - "name": "set_out_fn", - "file": "set.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header set.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "ensure_set_isof_type", - "file": "set.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header set.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_set_set", - "file": "set.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header set.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_find_value", - "file": "set.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header set.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "set_unnest_state_make", - "file": "set.h", - "role": "constructor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header set.h not public", - "return_c": "struct SetUnnestState *", - "n_params": 1 - }, - { - "name": "set_unnest_state_next", - "file": "set.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header set.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "ensure_same_skiplist_subtype", - "file": "skiplist.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header skiplist.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "skiplist_set_extra", - "file": "skiplist.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header skiplist.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "skiplist_headval", - "file": "skiplist.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header skiplist.h not public", - "return_c": "void *", - "n_params": 1 - }, - { - "name": "ensure_span_isof_type", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_span_isof_basetype", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_span_type", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_span_span", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_deserialize", - "file": "span.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "span_bound_cmp", - "file": "span.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_bound_qsort_cmp", - "file": "span.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_lower_cmp", - "file": "span.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_upper_cmp", - "file": "span.h", - "role": "predicate", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_decr_bound", - "file": "span.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_incr_bound", - "file": "span.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanarr_normalize", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "struct Span *", - "n_params": 4 - }, - { - "name": "span_bounds_shift_scale_value", - "file": "span.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "void", - "n_params": 7 - }, - { - "name": "span_bounds_shift_scale_time", - "file": "span.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "floatspan_floor_ceil_iter", - "file": "span.h", - "role": "accessor", - "class": [ - "FloatSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "numspan_delta_scale_iter", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "void", - "n_params": 5 - }, - { - "name": "tstzspan_delta_scale_iter", - "file": "span.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "void", - "n_params": 4 - }, - { - "name": "numspan_shift_scale_iter", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "void", - "n_params": 7 - }, - { - "name": "tstzspan_shift_scale1", - "file": "span.h", - "role": "accessor", - "class": [ - "TstzSpan" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "void", - "n_params": 5 - }, - { - "name": "mi_span_value", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "dist_double_value_value", - "file": "span.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span.h not public", - "return_c": "double", - "n_params": 3 - }, - { - "name": "common_entry_cmp", - "file": "span_index.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header span_index.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "span_index_leaf_consistent", - "file": "span_index.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span_index.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "span_gist_inner_consistent", - "file": "span_index.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span_index.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "span_index_recheck", - "file": "span_index.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header span_index.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_spanset_isof_type", - "file": "spanset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header spanset.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_spanset_type", - "file": "spanset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header spanset.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_same_spanset_span_type", - "file": "spanset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header spanset.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_spanset_span", - "file": "spanset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header spanset.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "ensure_valid_spanset_spanset", - "file": "spanset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header spanset.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "spanset_find_value", - "file": "spanset.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header spanset.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_and", - "file": "tbool_ops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tbool_ops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_or", - "file": "tbool_ops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tbool_ops.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "boolop_tbool_bool", - "file": "tbool_ops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tbool_ops.h not public", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "boolop_tbool_tbool", - "file": "tbool_ops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tbool_ops.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "ensure_same_dimensionality_tbox", - "file": "tbox.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tbox.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "set_tbox", - "file": "tbox.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tbox.h not public", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "span_tbox", - "file": "tbox.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tbox.h not public", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "tbox_tstzspan", - "file": "tbox.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tbox.h not public", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tbox_intspan", - "file": "tbox.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tbox.h not public", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tbox_floatspan", - "file": "tbox.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tbox.h not public", - "return_c": "struct Span *", - "n_params": 1 - }, - { - "name": "tbox_index_leaf_consistent", - "file": "tbox_index.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tbox_index.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tbox_gist_inner_consistent", - "file": "tbox_index.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tbox_index.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tbox_index_recheck", - "file": "tbox_index.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tbox_index.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datum_min_int32", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_max_int32", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_min_float8", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_max_float8", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_sum_int32", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_sum_float8", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_min_text", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_max_text", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_sum_double2", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_sum_double3", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_sum_double4", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_skiplist_common", - "file": "temporal_aggfuncs.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "int", - "n_params": 6 - }, - { - "name": "temporal_skiplist_merge", - "file": "temporal_aggfuncs.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "void **", - "n_params": 9 - }, - { - "name": "tinstant_tagg", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct TInstant **", - "n_params": 8 - }, - { - "name": "tsequence_tagg", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct TSequence **", - "n_params": 7 - }, - { - "name": "tcontseq_tagg_transfn", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 4 - }, - { - "name": "temporal_tagg_combinefn", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 4 - }, - { - "name": "tinstant_tagg_transfn", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "tinstant_tavg_finalfn", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tsequence_tavg_finalfn", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tnumberinst_transform_tavg", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct TInstant *", - "n_params": 1 - }, - { - "name": "temporal_transform_tcount", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct Temporal **", - "n_params": 2 - }, - { - "name": "temporal_transform_tagg", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct Temporal **", - "n_params": 3 - }, - { - "name": "tsequenceset_tagg_transfn", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 4 - }, - { - "name": "tdiscseq_tagg_transfn", - "file": "temporal_aggfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 3 - }, - { - "name": "temporal_tagg_transfn", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 4 - }, - { - "name": "temporal_tagg_transform_transfn", - "file": "temporal_aggfuncs.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_aggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 5 - }, - { - "name": "temporal_similarity", - "file": "temporal_analytics.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_analytics.h not public", - "return_c": "double", - "n_params": 3 - }, - { - "name": "temporal_similarity_path", - "file": "temporal_analytics.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_analytics.h not public", - "return_c": "Match *", - "n_params": 4 - }, - { - "name": "temporal_bbox_size", - "file": "temporal_boxops.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "tinstarr_set_bbox", - "file": "temporal_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "void", - "n_params": 6 - }, - { - "name": "tsequence_compute_bbox", - "file": "temporal_boxops.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "tseqarr_compute_bbox", - "file": "temporal_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "tsequenceset_compute_bbox", - "file": "temporal_boxops.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "boxop_temporal_tstzspan", - "file": "temporal_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "boxop_temporal_temporal", - "file": "temporal_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "boxop_tnumber_numspan", - "file": "temporal_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "boxop_tnumber_tbox", - "file": "temporal_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "boxop_tnumber_tnumber", - "file": "temporal_boxops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_boxops.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "eacomp_base_temporal", - "file": "temporal_compops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_compops.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "eacomp_temporal_base", - "file": "temporal_compops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_compops.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "eacomp_temporal_temporal", - "file": "temporal_compops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_compops.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tcomp_base_temporal", - "file": "temporal_compops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_compops.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tcomp_temporal_base", - "file": "temporal_compops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_compops.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tcomp_temporal_temporal", - "file": "temporal_compops.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_compops.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "tdiscseq_at_timestamptz", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tdiscseq_restrict_value", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tdiscseq_restrict_values", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tdiscseq_minus_timestamptz", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tdiscseq_restrict_tstzset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tdiscseq_restrict_tstzspanset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tcontseq_restrict_value_iter", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tcontseq_delete_timestamptz", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tcontseq_delete_tstzset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tcontseq_delete_tstzspanset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tcontseq_at_tstzset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tcontseq_minus_timestamptz", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tcontseq_minus_tstzset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tcontseq_minus_tstzspan", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 2 - }, - { - "name": "tcontseq_restrict_value", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tcontseq_restrict_values", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tsequence_at_values_iter", - "file": "temporal_restrict.h", - "role": "restriction", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tnumberseq_cont_restrict_span_iter", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tnumberseq_cont_restrict_spanset_iter", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tsegment_at_timestamptz", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TInstant *", - "n_params": 4 - }, - { - "name": "tcontseq_minus_timestamp_iter", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tcontseq_minus_tstzset_iter", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tcontseq_at_tstzspanset1", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tcontseq_minus_tstzspanset_iter", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tcontseq_at_tstzspan", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tcontseq_at_timestamptz", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TInstant *", - "n_params": 2 - }, - { - "name": "tcontseq_restrict_tstzspanset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tdiscseq_value_at_timestamptz", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tnumberseq_disc_restrict_span", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tnumberseq_disc_restrict_spanset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequence *", - "n_params": 3 - }, - { - "name": "tnumberseq_cont_restrict_span", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tnumberseq_cont_restrict_spanset", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "tnumberseq_cont_twavg", - "file": "temporal_restrict.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_restrict.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "span_num_bins", - "file": "temporal_tile.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "temporal_time_bin_init", - "file": "temporal_tile.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "struct SpanBinState *", - "n_params": 4 - }, - { - "name": "tbox_tile_state_make", - "file": "temporal_tile.h", - "role": "constructor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "struct TboxGridState *", - "n_params": 6 - }, - { - "name": "tbox_tile_state_next", - "file": "temporal_tile.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "tbox_tile_state_set", - "file": "temporal_tile.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "void", - "n_params": 7 - }, - { - "name": "interval_units", - "file": "temporal_tile.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "long", - "n_params": 1 - }, - { - "name": "timestamptz_bin_start", - "file": "temporal_tile.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "long", - "n_params": 3 - }, - { - "name": "datum_bin", - "file": "temporal_tile.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tnumber_value_time_tile_init", - "file": "temporal_tile.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "struct TboxGridState *", - "n_params": 6 - }, - { - "name": "tbox_tile_state_get", - "file": "temporal_tile.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_tile.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "temporal_transform_wcount", - "file": "temporal_waggfuncs.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_waggfuncs.h not public", - "return_c": "struct TSequence **", - "n_params": 3 - }, - { - "name": "tnumber_transform_wavg", - "file": "temporal_waggfuncs.h", - "role": "accessor", - "class": [ - "TNumber" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_waggfuncs.h not public", - "return_c": "struct TSequence **", - "n_params": 3 - }, - { - "name": "temporal_wagg_transfn", - "file": "temporal_waggfuncs.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_waggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 6 - }, - { - "name": "temporal_wagg_transform_transfn", - "file": "temporal_waggfuncs.h", - "role": "aggregate", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header temporal_waggfuncs.h not public", - "return_c": "struct SkipList *", - "n_params": 5 - }, - { - "name": "tinstant_set", - "file": "tinstant.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "tnumberinst_double", - "file": "tinstant.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "double", - "n_params": 1 - }, - { - "name": "tinstant_to_string", - "file": "tinstant.h", - "role": "conversion", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "tinstant_restrict_values_test", - "file": "tinstant.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tnumberinst_restrict_span_test", - "file": "tinstant.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tnumberinst_restrict_spanset_test", - "file": "tinstant.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tinstant_restrict_tstzset_test", - "file": "tinstant.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tinstant_restrict_tstzspanset_test", - "file": "tinstant.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "intersection_tinstant_tinstant", - "file": "tinstant.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tinstant.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tfloat_arithop_turnpt", - "file": "tnumber_mathfuncs.h", - "role": "accessor", - "class": [ - "TFloat" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tnumber_mathfuncs.h not public", - "return_c": "int", - "n_params": 9 - }, - { - "name": "arithop_tnumber_number", - "file": "tnumber_mathfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnumber_mathfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 5 - }, - { - "name": "arithop_tnumber_tnumber", - "file": "tnumber_mathfuncs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tnumber_mathfuncs.h not public", - "return_c": "struct Temporal *", - "n_params": 5 - }, - { - "name": "float_collinear", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "floatsegm_interpolate", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "double", - "n_params": 3 - }, - { - "name": "floatsegm_locate", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "long double", - "n_params": 3 - }, - { - "name": "tnumbersegm_intersection", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 9 - }, - { - "name": "tsequence_norm_test", - "file": "tsequence.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 8 - }, - { - "name": "tsequence_join_test", - "file": "tsequence.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tsequence_join", - "file": "tsequence.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "struct TSequence *", - "n_params": 4 - }, - { - "name": "tinstarr_normalize", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "struct TInstant **", - "n_params": 4 - }, - { - "name": "tcontseq_find_timestamptz", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tdiscseq_find_timestamptz", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tseqarr2_to_tseqarr", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "struct TSequence **", - "n_params": 4 - }, - { - "name": "ensure_valid_tinstarr_common", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "tsequence_make_exp1", - "file": "tsequence.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "struct TSequence *", - "n_params": 8 - }, - { - "name": "synchronize_tsequence_tsequence", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "tfloatsegm_intersection_value", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 6 - }, - { - "name": "tsegment_intersection_value", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 8 - }, - { - "name": "tsegment_intersection", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 9 - }, - { - "name": "tsegment_value_at_timestamptz", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 6 - }, - { - "name": "intersection_tdiscseq_tdiscseq", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "intersection_tcontseq_tdiscseq", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "intersection_tdiscseq_tcontseq", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "intersection_tsequence_tinstant", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "intersection_tinstant_tsequence", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tsequence_to_string", - "file": "tsequence.h", - "role": "conversion", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "char *", - "n_params": 4 - }, - { - "name": "ensure_increasing_timestamps", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "bbox_expand", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "ensure_valid_tinstarr", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "tsequence_make_valid", - "file": "tsequence.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "tnumberseq_shift_scale_value_iter", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "void", - "n_params": 5 - }, - { - "name": "tsequence_shift_scale_time_iter", - "file": "tsequence.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "tstepseq_to_linear_iter", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tstepseq_to_linear", - "file": "tsequence.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 1 - }, - { - "name": "tsequence_segments_iter", - "file": "tsequence.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tsequence_timestamps_iter", - "file": "tsequence.h", - "role": "accessor", - "class": [ - "TSequence" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequence.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tsequenceset_find_timestamptz", - "file": "tsequenceset.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tseqarr_normalize", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "struct TSequence **", - "n_params": 3 - }, - { - "name": "datum_distance", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "double", - "n_params": 4 - }, - { - "name": "ensure_valid_tinstarr_gaps", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int *", - "n_params": 6 - }, - { - "name": "ensure_valid_tseqarr", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "synchronize_tsequenceset_tsequence", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "synchronize_tsequenceset_tsequenceset", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "intersection_tsequenceset_tinstant", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "intersection_tinstant_tsequenceset", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "intersection_tsequenceset_tdiscseq", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "intersection_tdiscseq_tsequenceset", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "intersection_tsequence_tsequenceset", - "file": "tsequenceset.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "int", - "n_params": 5 - }, - { - "name": "tsequenceset_to_string", - "file": "tsequenceset.h", - "role": "conversion", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header tsequenceset.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "datum_textcat", - "file": "ttext_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header ttext_funcs.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_lower", - "file": "ttext_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header ttext_funcs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datum_upper", - "file": "ttext_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header ttext_funcs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "datum_initcap", - "file": "ttext_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header ttext_funcs.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "textfunc_ttext", - "file": "ttext_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header ttext_funcs.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "textfunc_ttext_text", - "file": "ttext_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header ttext_funcs.h not public", - "return_c": "struct Temporal *", - "n_params": 4 - }, - { - "name": "textfunc_ttext_ttext", - "file": "ttext_funcs.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header ttext_funcs.h not public", - "return_c": "struct Temporal *", - "n_params": 3 - }, - { - "name": "datum_as_wkb", - "file": "type_inout.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_inout.h not public", - "return_c": "unsigned char *", - "n_params": 4 - }, - { - "name": "datum_as_hexwkb", - "file": "type_inout.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_inout.h not public", - "return_c": "char *", - "n_params": 4 - }, - { - "name": "type_from_wkb", - "file": "type_inout.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_inout.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "type_from_hexwkb", - "file": "type_inout.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_inout.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "ensure_end_input", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "p_whitespace", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "void", - "n_params": 1 - }, - { - "name": "p_delimchar", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "p_obrace", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_obrace", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "p_cbrace", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_cbrace", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "p_obracket", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "p_cbracket", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "p_oparen", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_oparen", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "p_cparen", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "ensure_cparen", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "p_comma", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 1 - }, - { - "name": "basetype_parse", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "double_parse", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "elem_parse", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "set_parse", - "file": "type_parser.h", - "role": "accessor", - "class": [ - "Set" - ], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "struct Set *", - "n_params": 2 - }, - { - "name": "span_parse", - "file": "type_parser.h", - "role": "accessor", - "class": [ - "Span" - ], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "spanset_parse", - "file": "type_parser.h", - "role": "accessor", - "class": [ - "SpanSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "struct SpanSet *", - "n_params": 2 - }, - { - "name": "tbox_parse", - "file": "type_parser.h", - "role": "accessor", - "class": [ - "TBox" - ], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "struct TBox *", - "n_params": 1 - }, - { - "name": "timestamp_parse", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "long", - "n_params": 1 - }, - { - "name": "tinstant_parse", - "file": "type_parser.h", - "role": "accessor", - "class": [ - "TInstant" - ], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "struct TInstant *", - "n_params": 3 - }, - { - "name": "tdiscseq_parse", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "struct TSequence *", - "n_params": 2 - }, - { - "name": "tcontseq_parse", - "file": "type_parser.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "struct TSequence *", - "n_params": 4 - }, - { - "name": "tsequenceset_parse", - "file": "type_parser.h", - "role": "accessor", - "class": [ - "TSequenceSet" - ], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "struct TSequenceSet *", - "n_params": 3 - }, - { - "name": "temporal_parse", - "file": "type_parser.h", - "role": "accessor", - "class": [ - "Temporal" - ], - "tier": "internal", - "confidence": "high", - "reason": "header type_parser.h not public", - "return_c": "struct Temporal *", - "n_params": 2 - }, - { - "name": "datum_copy", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_double", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "double", - "n_params": 2 - }, - { - "name": "double_datum", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "bstring2bytea", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "struct varlena *", - "n_params": 2 - }, - { - "name": "basetype_in", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 4 - }, - { - "name": "basetype_out", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "char *", - "n_params": 3 - }, - { - "name": "pfree_array", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "stringarr_to_string", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "char *", - "n_params": 8 - }, - { - "name": "datumarr_sort", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "void", - "n_params": 3 - }, - { - "name": "tstzarr_sort", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "spanarr_sort", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tinstarr_sort", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "tseqarr_sort", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "void", - "n_params": 2 - }, - { - "name": "datumarr_remove_duplicates", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "tstzarr_remove_duplicates", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "tinstarr_remove_duplicates", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 2 - }, - { - "name": "datum_add", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_sub", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_mult", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_div", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_cmp", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_eq", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_ne", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_lt", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_le", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_gt", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum_ge", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum2_eq", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum2_ne", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum2_lt", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum2_le", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum2_gt", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "datum2_ge", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "int", - "n_params": 3 - }, - { - "name": "hypot3d", - "file": "type_util.h", - "role": null, - "class": [], - "tier": "internal", - "confidence": "high", - "reason": "header type_util.h not public", - "return_c": "double", - "n_params": 3 - } - ] -} diff --git a/tools/meos-source-commit.txt b/tools/meos-source-commit.txt deleted file mode 100644 index cf2d0f4..0000000 --- a/tools/meos-source-commit.txt +++ /dev/null @@ -1 +0,0 @@ -ed3f13ef4c7cdea8a448bb152c0247dd647d2dbd diff --git a/tools/regen_baseline.sh b/tools/regen_baseline.sh index 2f87c4b..522cb7e 100755 --- a/tools/regen_baseline.sh +++ b/tools/regen_baseline.sh @@ -24,6 +24,10 @@ catalog="${1:?usage: regen_baseline.sh [source-ref]}" source_ref="${2:-meos-idl.json (MEOS-API run.py over tools/meos-source-commit.txt)}" out="$here/baseline/streaming-relevance-baseline.json" +# The baseline is a derived, gitignored build artifact, so its directory is absent +# in a fresh checkout — create it before the classifier writes. +mkdir -p "$here/baseline" + python3 "$here/classify_streaming_relevance.py" "$catalog" \ --source-ref "$source_ref" -o "$out"