murano/doc/source/murano_pl/builtin_functions.rst
Kirill Zaitsev 3a2c7f6f7b Murano documentation update
Added information about python-muranoclient
Added information about Murano Repository
Updated package creation section to expain how 'Require' section and
'images.lst' file work.
Minor style/typo fixes

Change-Id: I378a92252f824fc89c6a6dffb34949ffb8d1fb27
2015-04-10 12:05:38 +03:00

1.0 KiB

Built-In functions

Murano has built-in functions which allows to do basic operations with Murano PL objects.

List operations

list.skip(count)

This function returns a sliced subset of initial list. It is equal to Python a[count:] function.

list.take(count)

Returns first "count" elements of a list. IT is equal to a[:count] operation in Python.