Top "Nested" questions

This tag relates to any of various nested entities or operations in programming.

ldap nested group membership

Is it possible to create an LDAP query which will return (or check for) users in a nested group? e.…

active-directory ldap nested
How to search nested objects with elastic-search

OK, I've not been able to figure this out thus far. Hoping someone can offer some insight. Given the documents …

json elasticsearch nested
HTML tags inside <label>

I have a table in a page that consists of checkboxes in the cells on the left and descriptions in …

html nested label
Multiple levels of 'collection.defaultdict' in Python

Thanks to some great folks on SO, I discovered the possibilities offered by collections.defaultdict, notably in readability and speed. …

python dictionary nested
MongoDB update data in nested field

i'm using Mongo to be my database. i have a data: { _id : '123' friends: [ {name: 'allen', emails: [{email: '11111…

mongodb nested
How to sort OrderedDict of OrderedDict?

I'm trying to sort OrderedDict in OrderedDict by 'depth' key. Is there any solution to sort that Dictionary ? OrderedDict([ (2, OrderedDict([ (…

python sorting nested ordereddictionary
how to break out of only one nested loop

I have two tab-delimited files, and I need to test every row in the first file against all the rows …

python loops nested break
List of HTML5 elements that can be nested inside P element?

I am trying to figure all the valid HTML5 elements that can be nested inside paragraph elements such that w3 …

html nested
How do nested functions work in Python?

def maker(n): def action(x): return x ** n return action f = maker(2) print(f) print(f(3)) print(f(4)) g = …

python function nested closures nested-function
How can I create a Set of Sets in Python?

I'm trying to make a set of sets in Python. I can't figure out how to do it. Starting with …

python collections nested set