User Tools

Site Tools


script:walkthrough:functions
Records 
 Scopes

Functions

A function is defined in the current scope using a def statement. def is a compound statement, so it must be either a single-line compound or end must be used in the end.

def func1(): pass

def func2()
end

The return statement is used to return a value from a function.

def func3(): return 'World'
print 'Hello', func3()

Arguments

Functions can be defined with a list of untyped arguments.

def func5(a, b, c)

Default values can be included.

def func5(a, b='default', c=100)

When calling a function, all arguments must have values. Argument names can always be included in the function call, regardless of whether they were defined with default values or not. When using names, the order can also be changed.

func5(c=5, a=100, b='OOO')

Records as arguments

Records are passed by non-owned reference in arguments.

record myrec
myrec.val = 'Original'
print myrec.val
def modify(r)
    r.val = 'Changed'
end
modify(myrec)
print myrec.val

Output:

Original
Changed

Note that records are always passed by reference, even when specifically passing in an owned reference as argument. In the example below, the created record exists only for the duration of the function call. The function's local variable rec is initialized with a non-owned reference to the record. This non-owned reference is returned, and thus an invalid reference will be assigned to a. Trying to access a after this would return in a NullError exception.

def do_init(rec)
    rec.val = 'inited'
    return rec
end
# The following should be avoided:
a = do_init(Record())  # returns null ref!
Avoid using Record() in arguments. Instead, only use it to assign an owned reference to a local variable, or when returning a copy of a record (see next section).

Records as return value

Records are passed by non-owned reference in the return value. This means that if a record is created as a local variable, it will be deleted even when it used as a return value (!).

def func4()
    record a          # 'a' owns the record
    a.value = "func4"
    return a          # non-owned reference returned
end                   # scope of 'a' ends
print func4().value   # throws NullError!

In this case, one could instead use the Record() function to return a copy of the record to the caller.

return Record(a)

Defining into a record

The def statement accepts identifier lookups within the function name. For example, one could define the function func5 as a member of myrec.

def myrec.func5(a, b)
    return a + b
end

In fact, def behaves like an assignment operator. The above code means:

  1. Look up myrec.
  2. Create a variable called func5 within myrec.
  3. Create a function object taking arguments (a, b) and assign it as the value of the variable myrec.func5.

Since functions are actually variables that reference function objects, function definitions can be made within the scope of a function.

def func6()
    def func7(): return 'local function'
end

func7 is not visible outside func6, just like any other local variable. However, one could return func7 out of func6 and then it could be used just like a regular top-level function.

Functions defined inside another function do not have visibility to variables in the outer function. Instead, each function has its own local namespace and may access the module's global namespace.

a = 'global scope'
def outer()
    a = 100
    print 'outer: a =', a
    def inner()
        print 'inner: a =', a
    end
    inner()
end
outer()

Output:

outer: a = 100
inner: a = global scope

Function variables

Since functions are just variables referencing function objects, one can trivially make an alias for a function with assignment. Unlike records, function objects are reference-counted, so a function remains available as long as there is at least one variable pointing to it.

$ def someFunc(): return 'works'

$ other = someFunc

$ print someFunc(), other()
works works

Functions can be passed as arguments.

def doCallback(a, b, cb)
    return cb(a, b)
end
doCallback(10, 15, workFunction)
script/walkthrough/functions.txt · Last modified: 2022-09-27 04:24 by skyjake