I hear this phrase often and do not fully understand it’s meaning. What does it mean? And if possible, is there an example?
thank you!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
One use of this expression refers to a style of programming where there is a very deep call stack. You might see a method called
Grobbleand wonder what it does, so you open up the definition and see this:So then you look at
Foo.Grobble:That takes you too
FooImplwhich looks like this:After going deeper and deeper into the code, still unable to see the end, you are allowed to frustratedly exclaim “It’s turtles all the way down!”
The reference is to the metaphor of the Earth being on the back of a turtle. What is the turtle standing on? Another turtle… etc.