apexstruct
apexstruct copied to clipboard
A library of data structures for the Salesforce Apex Language
this probably causes #1.
The reflection is causing slow downs on large data sets. Better to remove this as the language doesn't even properly support it.
The RedBlackTree is currently hitting the CPU limit on large data sets. Possibly caused by method overhead or dynamic type checking at run time.
The SkipList struct is only partially functioning. It needs to be debugged and finished.
The AVLTree is currently only partly functioning. It needs to be finished.