Top "Nested" questions

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

Find key/value pairs deep inside a hash containing an arbitrary number of nested hashes and arrays

A web service is returning a hash that contains an unknown number of nested hashes, some of which contain an …

ruby arrays hash nested amazon
How do I setup nested views in AngularJS?

I have an application with various screens. Each screen is assigned a URL, such as #, mails, contacts, and so on. …

uiview angularjs nested
Why can't I create an enum in an inner class in Java?

What I try to do is this: public class History { public class State { public enum StateType { Eclipse gives me this …

java enums nested inner-classes
Ruby: merge nested hash

I would like to merge a nested hash. a = {:book=> [{:title=>"Hamlet", :author=>"William Shakespeare" }]} b = {:book=&…

ruby hash merge nested
Ending a macro within a called subroutine

I have a macro (CMOV) which calls another subroutine (CMOV2) that checks for a condition which, if met, displays a …

vba excel nested routines
Rails nested form with has_many :through, how to edit attributes of join model?

How do you edit the attributes of a join model when using accepts_nested_attributes_for? I have 3 models: Topics …

ruby-on-rails join nested nested-forms
Nested templates with dependent scope

What is dependent scope and what is the meaning of typename in the context of the following error? $ make g++ …

c++ templates scope nested
How to separate styles in a nested list styling?

I have a list and list also has list in it. I set styles on parent list but I want …

html css nested html-lists nested-lists
How to parse nested JSON object in Delphi XE2?

I'm new to JSON and I have this project on my hands that require me to parse a JSON and …

json delphi nested delphi-xe2
Nested dictionary comprehension python

I'm having trouble understanding nested dictionary comprehensions in Python 3. The result I'm getting from the example below outputs the correct …

python syntax nested list-comprehension dictionary-comprehension