R/utils.R
dot-checkSection.Rd
Check for a section existence in a nested list
.checkSection(object, sectionNames)
list to inspect
vector or characters with sectio names to check for
logical indicating whether the sections where found in the list
l = list(a=list(b="test")) .checkSection(l,c("a","b")) #> [1] TRUE .checkSection(l,c("c","b")) #> [1] FALSE