Warning: Work in progress! Leave feedback on Zulip or Github if you'd like this doc to be updated.

Builtin Functions

This chapter in the Oils Reference describes builtin functions.

(As opposed to builtin commands.

Table of Contents
Values
len()
type()
Conversions
bool()
int()
float()
str()
list()
dict()
chr()
ord()
List
any()
all()
Math
abs()
max()
min()
round()
sum()
Pattern
_match()
_start()
_end()
Str
countRunes()
find()
sub()
join()
split()
Word
maybe
Introspection
shvar_get()
Config Gen
Better Syntax
Codecs
Hashing

Values

len()

Returns the

type()

Given an arbitrary value, returns a string representing the value's runtime type.

For example:

var d = {'foo': 'bar'}
var n = 1337

$ = type(d)
(Str)    'Dict'

$ = type(n)
(Str)    'Int'

Conversions

bool()

Returns the truth value of its argument. Similar to bool() in python, it returns false for:

Returns true for all other values.

int()

Given a float, returns the largest integer that is less than its argument (i.e. floor()).

$ = int(1.99)
(Int)    1

Given a string, Int() will attempt to convert the string to a base-10 integer. The base can be overriden by calling with a second argument.

$ = int('10')
(Int)   10

$ = int('10', 2)
(Int)   2

ysh$ = Int('foo')
# fails with an expression error

float()

Given an integer, returns the corressponding flaoting point representation.

$ = float(1)
(Float)   1.0

Given a string, Float() will attempt to convert the string to float.

$ = float('1.23')
(Float)   1.23

ysh$ = float('bar')
# fails with an expression error

str()

Converts a Float or Int to a string.

list()

Given a list, returns a shallow copy of the original.

Given an iterable value (e.g. a range or dictionary), returns a list containing one element for each item in the original collection.

$ = list({'a': 1, 'b': 2})
(List)   ['a', 'b']

$ = list(1:5)
(List)   [1, 2, 3, 4, 5]

dict()

Given a dictionary, returns a shallow copy of the original.

chr()

(not implemented)

Convert an integer to a Str with the corresponding UTF-8 encoded code point.

Integers in the surrogate range are an error.

= chr(97)
(Str)    'a'

= chr(0x3bc)
(Str)    'μ'

ord()

(not implemented)

Convert a single UTF-8 encoded code point to an integer.

= ord('a')
(Int)   97

= ord('μ')
(Int)   956  # same as 0x3bc

List

any()

Returns true if any value in the list is truthy (x is truthy if Bool(x) returns true).

If the list is empty, return false.

= any([])  # => false
= any([true, false])  # => true
= any([false, false])  # => false
= any([false, "foo", false])  # => true

Note, you will need to source --builtin list.ysh to use this function.

all()

Returns true if all values in the list are truthy (x is truthy if Bool(x) returns true).

If the list is empty, return true.

= any([])  # => true
= any([true, true])  # => true
= any([false, true])  # => false
= any(["foo", true, true])  # => true

Note, you will need to source --builtin list.ysh to use this function.

Math

abs()

Compute the absolute (positive) value of a number (float or int).

= abs(-1)  # => 1
= abs(0)   # => 0
= abs(1)   # => 1

Note, you will need to source --builtin math.ysh to use this function.

max()

Compute the maximum of 2 or more values.

max takes two different signatures:

  1. max(a, b) to return the maximum of a, b
  2. max(list) to return the greatest item in the list

For example:

  = max(1, 2)  # => 2
  = max([1, 2, 3])  # => 3

Note, you will need to source --builtin math.ysh to use this function.

min()

Compute the minimum of 2 or more values.

min takes two different signatures:

  1. min(a, b) to return the minimum of a, b
  2. min(list) to return the least item in the list

For example:

= min(2, 3)  # => 2
= max([1, 2, 3])  # => 1

Note, you will need to source --builtin math.ysh to use this function.

round()

sum()

Computes the sum of all elements in the list.

Returns 0 for an empty list.

= sum([])  # => 0
= sum([0])  # => 0
= sum([1, 2, 3])  # => 6

Note, you will need to source --builtin list.ysh to use this function.

Pattern

_match()

_start()

_end()

Str

countRunes()

find()

sub()

join()

Given an array of strings, returns a string.

var x = ['a', 'b', 'c']

$ echo $[join(x)]
abc

$ echo $[join(x, ' ')]  # optional delimiter
a b c

split()

Word

maybe

Introspection

shvar_get()

TODO

Config Gen

Better Syntax

These functions give better syntax to existing shell constructs.

Codecs

TODO

Hashing

TODO


Generated on Wed, 13 Sep 2023 01:45:04 -0400