Is it okay to do something like this in Judy arrays:

            JLL (value, JArray, index);

            if (value != NULL) {
               // insert/delete some entries <<< OKAY ?
            }

            // find the next overlapping
            index = (Word_t)someNewValue
            JLF (value, JArray, index);
            while (value != NULL) {
                // insert/delete some entries <<<< OKAY ?

                // continue searching for post overlapping range

                JLN (value, JArray, index);
            } // while (value != NULL)

will I still be able to see all entries including newly inserted ones and not 
see the deleted ones?
OR
will I see only the old ones ?
OR
will I see unknown results ?
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Judy-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/judy-devel

Reply via email to