This page contains list of most known problems you may run into while developing a bash libarary.
local variable as an array ? local variable, the line: local VAR_NAME
declaire creates a `regular' variable. Because of that, in order to use a local array you must implicitly declaire that it is an array: declaire -a local ARR_NAME
local hash? hash created by hashstash is created as a hashstash internal variable. I.e. the actual name of the hash is not HASHNAME but __hashstash_HASHNAME.
1.5.5