@@ -100,17 +100,36 @@ <h1 id="Hedgehog_AutoGenContext" data-uid="Hedgehog.AutoGenContext" class="text-
100100 < div class ="markdown conceptual "> </ div >
101101
102102 < div class ="codewrapper ">
103- < pre > < code class ="lang-fsharp hljs "> type AutoGenContext =
103+ < ul class ="nav nav-tabs ">
104+ < li class ="nav-item ">
105+ < button class ="nav-link active " data-bs-toggle ="tab " data-bs-target ="#tab-fsharp-Hedgehog_AutoGenContext " type ="button "> F#</ button >
106+ </ li >
107+ < li class ="nav-item ">
108+ < button class ="nav-link " data-bs-toggle ="tab " data-bs-target ="#tab-csharp-Hedgehog_AutoGenContext " type ="button "> C#</ button >
109+ </ li >
110+ </ ul >
111+ < div class ="tab-content ">
112+ < div class ="tab-pane show active " id ="tab-fsharp-Hedgehog_AutoGenContext ">
113+ < pre > < code class ="lang-fsharp hljs "> type AutoGenContext =
104114 member AutoGenerate : Gen<'a>
105115 member CanRecurse : bool
106116 member CollectionRange : Range<int>
107117 member CurrentRecursionDepth : int</ code > </ pre >
118+ </ div >
119+ < div class ="tab-pane " id ="tab-csharp-Hedgehog_AutoGenContext ">
120+ < pre > < code class ="lang-csharp hljs "> public class AutoGenContext {
121+ public static Gen<a> AutoGenerate()
122+ public static bool CanRecurse()
123+ public static Range<int> CollectionRange()
124+ public static int CurrentRecursionDepth()
125+ }</ code > </ pre >
126+ </ div >
127+ </ div >
108128 </ div >
109129
110130
111131
112132
113- < div > < span class ="xref "> AutoGenContext</ span > </ div >
114133
115134
116135
@@ -134,7 +153,22 @@ <h3 id="Hedgehog_AutoGenContext_AutoGenerate" data-uid="Hedgehog.AutoGenContext.
134153 < div class ="markdown level1 conceptual "> </ div >
135154
136155 < div class ="codewrapper ">
137- < pre > < code class ="lang-fsharp hljs "> val AutoGenerate : Gen<'a></ code > </ pre >
156+ < ul class ="nav nav-tabs ">
157+ < li class ="nav-item ">
158+ < button class ="nav-link active " data-bs-toggle ="tab " data-bs-target ="#tab-fsharp-Hedgehog_AutoGenContext_AutoGenerate " type ="button "> F#</ button >
159+ </ li >
160+ < li class ="nav-item ">
161+ < button class ="nav-link " data-bs-toggle ="tab " data-bs-target ="#tab-csharp-Hedgehog_AutoGenContext_AutoGenerate " type ="button "> C#</ button >
162+ </ li >
163+ </ ul >
164+ < div class ="tab-content ">
165+ < div class ="tab-pane show active " id ="tab-fsharp-Hedgehog_AutoGenContext_AutoGenerate ">
166+ < pre > < code class ="lang-fsharp hljs "> member AutoGenerate : Gen<'a></ code > </ pre >
167+ </ div >
168+ < div class ="tab-pane " id ="tab-csharp-Hedgehog_AutoGenContext_AutoGenerate ">
169+ < pre > < code class ="lang-csharp hljs "> public static Gen<a> AutoGenerate()</ code > </ pre >
170+ </ div >
171+ </ div >
138172 </ div >
139173
140174
@@ -150,16 +184,31 @@ <h3 id="Hedgehog_AutoGenContext_AutoGenerate" data-uid="Hedgehog.AutoGenContext.
150184
151185
152186
153- < h3 id ="Hedgehog_AutoGenContext_CollectionRange " data-uid ="Hedgehog.AutoGenContext.CollectionRange ">
154- CollectionRange
155- < a class ="header-action link-secondary " title ="View source " href ="https://github.com/hedgehogqa/fsharp-hedgehog/blob/master/src/Hedgehog/Autogen/AutoGenContext.fs/#L15 "> < i class ="bi bi-code-slash "> </ i > </ a >
187+ < h3 id ="Hedgehog_AutoGenContext_CanRecurse " data-uid ="Hedgehog.AutoGenContext.CanRecurse ">
188+ CanRecurse
189+ < a class ="header-action link-secondary " title ="View source " href ="https://github.com/hedgehogqa/fsharp-hedgehog/blob/master/src/Hedgehog/Autogen/AutoGenContext.fs/#L13 "> < i class ="bi bi-code-slash "> </ i > </ a >
156190 </ h3 >
157191
158192 < div class ="markdown level1 summary "> </ div >
159193 < div class ="markdown level1 conceptual "> </ div >
160194
161195 < div class ="codewrapper ">
162- < pre > < code class ="lang-fsharp hljs "> val CollectionRange : Range<int></ code > </ pre >
196+ < ul class ="nav nav-tabs ">
197+ < li class ="nav-item ">
198+ < button class ="nav-link active " data-bs-toggle ="tab " data-bs-target ="#tab-fsharp-Hedgehog_AutoGenContext_CanRecurse " type ="button "> F#</ button >
199+ </ li >
200+ < li class ="nav-item ">
201+ < button class ="nav-link " data-bs-toggle ="tab " data-bs-target ="#tab-csharp-Hedgehog_AutoGenContext_CanRecurse " type ="button "> C#</ button >
202+ </ li >
203+ </ ul >
204+ < div class ="tab-content ">
205+ < div class ="tab-pane show active " id ="tab-fsharp-Hedgehog_AutoGenContext_CanRecurse ">
206+ < pre > < code class ="lang-fsharp hljs "> member CanRecurse : bool</ code > </ pre >
207+ </ div >
208+ < div class ="tab-pane " id ="tab-csharp-Hedgehog_AutoGenContext_CanRecurse ">
209+ < pre > < code class ="lang-csharp hljs "> public static bool CanRecurse()</ code > </ pre >
210+ </ div >
211+ </ div >
163212 </ div >
164213
165214
@@ -175,16 +224,31 @@ <h3 id="Hedgehog_AutoGenContext_CollectionRange" data-uid="Hedgehog.AutoGenConte
175224
176225
177226
178- < h3 id ="Hedgehog_AutoGenContext_CurrentRecursionDepth " data-uid ="Hedgehog.AutoGenContext.CurrentRecursionDepth ">
179- CurrentRecursionDepth
180- < a class ="header-action link-secondary " title ="View source " href ="https://github.com/hedgehogqa/fsharp-hedgehog/blob/master/src/Hedgehog/Autogen/AutoGenContext.fs/#L14 "> < i class ="bi bi-code-slash "> </ i > </ a >
227+ < h3 id ="Hedgehog_AutoGenContext_CollectionRange " data-uid ="Hedgehog.AutoGenContext.CollectionRange ">
228+ CollectionRange
229+ < a class ="header-action link-secondary " title ="View source " href ="https://github.com/hedgehogqa/fsharp-hedgehog/blob/master/src/Hedgehog/Autogen/AutoGenContext.fs/#L15 "> < i class ="bi bi-code-slash "> </ i > </ a >
181230 </ h3 >
182231
183232 < div class ="markdown level1 summary "> </ div >
184233 < div class ="markdown level1 conceptual "> </ div >
185234
186235 < div class ="codewrapper ">
187- < pre > < code class ="lang-fsharp hljs "> val CurrentRecursionDepth : int</ code > </ pre >
236+ < ul class ="nav nav-tabs ">
237+ < li class ="nav-item ">
238+ < button class ="nav-link active " data-bs-toggle ="tab " data-bs-target ="#tab-fsharp-Hedgehog_AutoGenContext_CollectionRange " type ="button "> F#</ button >
239+ </ li >
240+ < li class ="nav-item ">
241+ < button class ="nav-link " data-bs-toggle ="tab " data-bs-target ="#tab-csharp-Hedgehog_AutoGenContext_CollectionRange " type ="button "> C#</ button >
242+ </ li >
243+ </ ul >
244+ < div class ="tab-content ">
245+ < div class ="tab-pane show active " id ="tab-fsharp-Hedgehog_AutoGenContext_CollectionRange ">
246+ < pre > < code class ="lang-fsharp hljs "> member CollectionRange : Range<int></ code > </ pre >
247+ </ div >
248+ < div class ="tab-pane " id ="tab-csharp-Hedgehog_AutoGenContext_CollectionRange ">
249+ < pre > < code class ="lang-csharp hljs "> public static Range<int> CollectionRange()</ code > </ pre >
250+ </ div >
251+ </ div >
188252 </ div >
189253
190254
@@ -200,16 +264,31 @@ <h3 id="Hedgehog_AutoGenContext_CurrentRecursionDepth" data-uid="Hedgehog.AutoGe
200264
201265
202266
203- < h3 id ="Hedgehog_AutoGenContext_CanRecurse " data-uid ="Hedgehog.AutoGenContext.CanRecurse ">
204- CanRecurse
205- < a class ="header-action link-secondary " title ="View source " href ="https://github.com/hedgehogqa/fsharp-hedgehog/blob/master/src/Hedgehog/Autogen/AutoGenContext.fs/#L13 "> < i class ="bi bi-code-slash "> </ i > </ a >
267+ < h3 id ="Hedgehog_AutoGenContext_CurrentRecursionDepth " data-uid ="Hedgehog.AutoGenContext.CurrentRecursionDepth ">
268+ CurrentRecursionDepth
269+ < a class ="header-action link-secondary " title ="View source " href ="https://github.com/hedgehogqa/fsharp-hedgehog/blob/master/src/Hedgehog/Autogen/AutoGenContext.fs/#L14 "> < i class ="bi bi-code-slash "> </ i > </ a >
206270 </ h3 >
207271
208272 < div class ="markdown level1 summary "> </ div >
209273 < div class ="markdown level1 conceptual "> </ div >
210274
211275 < div class ="codewrapper ">
212- < pre > < code class ="lang-fsharp hljs "> val CanRecurse : bool</ code > </ pre >
276+ < ul class ="nav nav-tabs ">
277+ < li class ="nav-item ">
278+ < button class ="nav-link active " data-bs-toggle ="tab " data-bs-target ="#tab-fsharp-Hedgehog_AutoGenContext_CurrentRecursionDepth " type ="button "> F#</ button >
279+ </ li >
280+ < li class ="nav-item ">
281+ < button class ="nav-link " data-bs-toggle ="tab " data-bs-target ="#tab-csharp-Hedgehog_AutoGenContext_CurrentRecursionDepth " type ="button "> C#</ button >
282+ </ li >
283+ </ ul >
284+ < div class ="tab-content ">
285+ < div class ="tab-pane show active " id ="tab-fsharp-Hedgehog_AutoGenContext_CurrentRecursionDepth ">
286+ < pre > < code class ="lang-fsharp hljs "> member CurrentRecursionDepth : int</ code > </ pre >
287+ </ div >
288+ < div class ="tab-pane " id ="tab-csharp-Hedgehog_AutoGenContext_CurrentRecursionDepth ">
289+ < pre > < code class ="lang-csharp hljs "> public static int CurrentRecursionDepth()</ code > </ pre >
290+ </ div >
291+ </ div >
213292 </ div >
214293
215294
0 commit comments