Loading [MathJax]/extensions/tex2jax.js
Apps
All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Modules Pages
ootools.lua File Reference

Functions

function new_class isa (theClass)
 

Function Documentation

◆ isa()

function new_class isa ( theClass  )

/**

/**

/**

/** location: /home/runner/work/docs/docs/ug4/apps/poroelasticity/scripts / ootools.lua :31-48

function new_class:isa( theClass )
local b_isa = false
local cur_class = new_class
while ( nil ~= cur_class ) and ( false == b_isa ) do
if cur_class == theClass then
b_isa = true
else
cur_class = cur_class:superClass()
return b_isa
return new_class
function *Umax *y end
Definition channel.lua:87
function new_class superClass()
function new_class isa(theClass)

References if(), and while().