From c5573b1c216c8afafc66d7c749919559df766d67 Mon Sep 17 00:00:00 2001 From: romintomasetti Date: Wed, 28 Aug 2024 15:06:44 +0000 Subject: [PATCH] core(view): warn about view of views in a warning box --- docs/source/ProgrammingGuide/View.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/source/ProgrammingGuide/View.rst b/docs/source/ProgrammingGuide/View.rst index 06bba95b1..9838773e9 100644 --- a/docs/source/ProgrammingGuide/View.rst +++ b/docs/source/ProgrammingGuide/View.rst @@ -97,7 +97,9 @@ Finally, note that virtual functions are technically allowed, but calling them i 6.2.3 Can I make a View of Views? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -NOVICES: THE ANSWER FOR YOU IS "NO." PLEASE SKIP THIS SECTION. +.. warning:: + + NOVICES: THE ANSWER FOR YOU IS "NO." PLEASE SKIP THIS SECTION. A "View of Views" is a special case of View, where the type of each entry is itself a View. It is possible to make this, but before you try, please see below.