Top "Indirection" questions

Any of various programming concepts related to the level of abstraction applied to a particular problem, algorithm or scenario.

Use placeholders in yaml

Is there a way to use placeholders in yaml like this: foo: &FOO <<propname>>: type: …

yaml computed-properties indirection template-variables
What is indirect expansion? What does ${!var*} mean?

I'm reading "Bash Guide for Beginners". It says: If the first character of PARAMETER is an exclamation point, Bash uses …

bash indirection
Dynamic constant name in PHP

I am trying to create a constant name dynamically and then get at the value. define( CONSTANT_1 , "Some value" ) ; // try …

php constants indirection
Javascript - set a variable using concatenation of strings

Is it possible to set a variable by concatenating two strings together to form the name? If at all possible …

javascript variables concatenation indirection
Invalid Indirection in C++

This is my program. I dont know what to do next because I dont know what is invalid indirection. The …

c++ indirection
Level of Indirection solves every Problem

What does the quote "Level of Indirection solves every Problem" mean in Computer Science?

computer-science abstraction indirection
How to iterate over an array using indirect reference?

How can I make this code work? #!/bin/bash ARRAYNAME='FRUITS' FRUITS=( APPLE BANANA ORANGE ) for FRUIT in ${!ARRAYNAME[@]} do …

bash scripting indirection
What does "level of indirection" mean in David Wheeler's aphorism?

I've read this quote in a book: There is no problem in computer science that can't be solved using another …

computer-science indirection
How to overload the indirection operator? (C++)

I'm trying to create an iterator class as a member-class for a list class, and am trying to overload the …

c++ operator-overloading indirection
Accessing variables from a struct

How can we access variables of a structure? I have a struct: typedef struct { unsigned short a; unsigned shout b; } …

c++ pointers indirection