Suppose you want to compute the 25% quantile of some random variable. You can do this by first computing the median, and then computing the median of everything less than the median. You can repeat this process as any times as you want, going recursively in either direction from the last computed median, to compute any value in the quantile function to any desired level of accuracy.
The question is: what happens if you replace the median with the mean above? You get, basically, some kind of "mean version" of the quantile function, or something which fits the metaphor of median:quantile function::mean:________. Does there exist a name for this?