Returns the left node of a given node
.
The index of the left node of a specified node
is calculated as being:
/////////////////////////////////////////////////////////////////////////// // Copyright (C) 2013 Wizardry and Steamworks - License: GNU GPLv3 // /////////////////////////////////////////////////////////////////////////// string wasBinaryTreeLeft(list BT, string node) { // Left child index: 2*i + 1 integer i = llListFindList(BT, (list)node); if(i == -1) return ""; return llList2String(BT, 2*i+1); }