Jamie Balfour

Welcome to my personal website.

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

Official ZPE/YASS documentationlist_to_map

list_to_map (list keys, list values) ⇒ map

Converts a list to an map by taking a list of keys and a list of values and matching them.

Alternative function names: list_to_associative_array
First available: Version 1.7.2

Notes

This function is extremely useful for converting the input arguments of a program to an map:

YASS
function main()
  $argv = list_to_map(["first_arg", "second_arg"], $args)
  print($argv["first_arg"])
end function
  

Version 1.9.9 switched from list_to_associative_array to list_to_map.

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.

list_to_map"/>

Comments powered by BalfComment

Feedback 👍
Comments are sent via email to me.