Jamie Balfour

Welcome to my personal website.

Find out more about me, my personal projects, reviews, courses and much more here.

Official ZPE/YASS documentationPair

Introduction

The Pair object represents a simple key–value pair structure.

It exposes two public properties:

  • key
  • value

The Pair object is useful when working with associative structures, structured data, or when returning grouped values from functions.

All functions exposed by this object require a permission level of 0.

Pair object properties

The following public properties are available:

keystring
The key component of the pair.
valuestring
The value component of the pair.

Pair object functions

The following is a list of internal functions the Pair object exposes. All functions are ZPEObjectNativeFunctions therefore run in native code.

_construct(string key, string value) ⇒ boolean
Sets the key and value properties of the Pair object. Returns true when the properties have been assigned.
_output() ⇒ string
Returns a string representation of the pair in the format: [key : value].

Examples

Creating and printing a Pair:

YASS
$p = new Pair("name", "Jamie")

print($p)

Accessing properties directly:

YASS
$p = new Pair("language", "YASS")

print($p->key)
print($p->value)

Notes:

  • String-based: Both key and value are stored as strings.
  • String representation: Converting a Pair to a string produces the format [key : value].
  • Use case: Useful for structured data, associative constructs, or returning grouped values from functions.
Comments

There are no comments on this page.

New comment

Comments are welcome and encouraged, including disagreement and critique. However, this is not a space for abuse. Disagreement is welcome; personal attacks, harassment, or hate will be removed instantly. This site reflects personal opinions, not universal truths. If you can’t distinguish between the two, this probably isn’t the place for you. The system temporarily stores IP addresses and browser user agents for the purposes of spam prevention, moderation, and safeguarding. This data is automatically removed after fourteen days. Your email address is stored so that replies can be sent to your email address.

Comments powered by BalfComment

Feedback 👍
Comments are sent via email to me.