Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9fe7cf6

Browse files
API documentation update by build server
1 parent ef38be4 commit 9fe7cf6

5 files changed

+14
-14
lines changed

‎docs/api/Advanced.Algorithms.Combinatorics.Combination.html‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
<h1 id="Advanced_Algorithms_Combinatorics_Combination" data-uid="Advanced.Algorithms.Combinatorics.Combination" class="text-break">Class Combination
8585
</h1>
86-
<div class="markdown level0 summary"><p>Combinations computer.</p>
86+
<div class="markdown level0 summary"><p>Combination generator (nCr).</p>
8787
</div>
8888
<div class="markdown level0 conceptual"></div>
8989
<div class="inheritance">
@@ -131,7 +131,7 @@ <h4 id="Advanced_Algorithms_Combinatorics_Combination_Find__1_System_Collections
131131
<div class="markdown level1 conceptual"></div>
132132
<h5 class="decalaration">Declaration</h5>
133133
<div class="codewrapper">
134-
<pre><code class="lang-csharp hljs">public static List&lt;List&lt;T&gt;&gt; Find&lt;T&gt;(List&lt;T&gt; input, int r, bool withRepetition)</code></pre>
134+
<pre><code class="lang-csharp hljs">public static List&lt;List&lt;T&gt;&gt; Find&lt;T&gt;(List&lt;T&gt; n, int r, bool withRepetition = false)</code></pre>
135135
</div>
136136
<h5 class="parameters">Parameters</h5>
137137
<table class="table table-bordered table-striped table-condensed">
@@ -145,7 +145,7 @@ <h5 class="parameters">Parameters</h5>
145145
<tbody>
146146
<tr>
147147
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.generic.list-1">List</a>&lt;T&gt;</td>
148-
<td><span class="parametername">input</span></td>
148+
<td><span class="parametername">n</span></td>
149149
<td></td>
150150
</tr>
151151
<tr>

‎docs/api/Advanced.Algorithms.Combinatorics.Permutation.html‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
<h1 id="Advanced_Algorithms_Combinatorics_Permutation" data-uid="Advanced.Algorithms.Combinatorics.Permutation" class="text-break">Class Permutation
8585
</h1>
86-
<div class="markdown level0 summary"><p>Permutation computer.</p>
86+
<div class="markdown level0 summary"><p>Permutation generator (nPr).</p>
8787
</div>
8888
<div class="markdown level0 conceptual"></div>
8989
<div class="inheritance">
@@ -131,7 +131,7 @@ <h4 id="Advanced_Algorithms_Combinatorics_Permutation_Find__1_System_Collections
131131
<div class="markdown level1 conceptual"></div>
132132
<h5 class="decalaration">Declaration</h5>
133133
<div class="codewrapper">
134-
<pre><code class="lang-csharp hljs">public static List&lt;List&lt;T&gt;&gt; Find&lt;T&gt;(List&lt;T&gt; input, int r, bool withRepetition = false)</code></pre>
134+
<pre><code class="lang-csharp hljs">public static List&lt;List&lt;T&gt;&gt; Find&lt;T&gt;(List&lt;T&gt; n, int r, bool withRepetition = false)</code></pre>
135135
</div>
136136
<h5 class="parameters">Parameters</h5>
137137
<table class="table table-bordered table-striped table-condensed">
@@ -145,7 +145,7 @@ <h5 class="parameters">Parameters</h5>
145145
<tbody>
146146
<tr>
147147
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.generic.list-1">List</a>&lt;T&gt;</td>
148-
<td><span class="parametername">input</span></td>
148+
<td><span class="parametername">n</span></td>
149149
<td></td>
150150
</tr>
151151
<tr>

‎docs/api/Advanced.Algorithms.Combinatorics.Subset.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
<h1 id="Advanced_Algorithms_Combinatorics_Subset" data-uid="Advanced.Algorithms.Combinatorics.Subset" class="text-break">Class Subset
8585
</h1>
86-
<div class="markdown level0 summary"><p>Subset computer.</p>
86+
<div class="markdown level0 summary"><p>Subset generator.</p>
8787
</div>
8888
<div class="markdown level0 conceptual"></div>
8989
<div class="inheritance">

‎docs/api/Advanced.Algorithms.Combinatorics.html‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ <h1 id="Advanced_Algorithms_Combinatorics" data-uid="Advanced.Algorithms.Combina
8888
<h3 id="classes">Classes
8989
</h3>
9090
<h4><a class="xref" href="Advanced.Algorithms.Combinatorics.Combination.html">Combination</a></h4>
91-
<section><p>Combinations computer.</p>
91+
<section><p>Combination generator (nCr).</p>
9292
</section>
9393
<h4><a class="xref" href="Advanced.Algorithms.Combinatorics.Permutation.html">Permutation</a></h4>
94-
<section><p>Permutation computer.</p>
94+
<section><p>Permutation generator (nPr).</p>
9595
</section>
9696
<h4><a class="xref" href="Advanced.Algorithms.Combinatorics.Subset.html">Subset</a></h4>
97-
<section><p>Subset computer.</p>
97+
<section><p>Subset generator.</p>
9898
</section>
9999
</article>
100100
</div>

‎docs/index.json‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,22 @@
2222
"api/Advanced.Algorithms.Combinatorics.Combination.html": {
2323
"href": "api/Advanced.Algorithms.Combinatorics.Combination.html",
2424
"title": "Class Combination | Advanced Algorithms",
25-
"keywords": "Class Combination Combinations computer. Inheritance Object Combination Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.Combinatorics Assembly : Advanced.Algorithms.dll Syntax public class Combination Methods Find<T>(List<T>, Int32, Boolean) Declaration public static List<List<T>> Find<T>(List<T> input, int r, bool withRepetition) Parameters Type Name Description List <T> input Int32 r Boolean withRepetition Returns Type Description List < List <T>> Type Parameters Name Description T"
25+
"keywords": "Class Combination Combination generator (nCr). Inheritance Object Combination Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.Combinatorics Assembly : Advanced.Algorithms.dll Syntax public class Combination Methods Find<T>(List<T>, Int32, Boolean) Declaration public static List<List<T>> Find<T>(List<T> n, int r, bool withRepetition = false) Parameters Type Name Description List <T> n Int32 r Boolean withRepetition Returns Type Description List < List <T>> Type Parameters Name Description T"
2626
},
2727
"api/Advanced.Algorithms.Combinatorics.html": {
2828
"href": "api/Advanced.Algorithms.Combinatorics.html",
2929
"title": "Namespace Advanced.Algorithms.Combinatorics | Advanced Algorithms",
30-
"keywords": "Namespace Advanced.Algorithms.Combinatorics Classes Combination Combinations computer. Permutation Permutation computer. Subset Subset computer."
30+
"keywords": "Namespace Advanced.Algorithms.Combinatorics Classes Combination Combination generator (nCr). Permutation Permutation generator (nPr). Subset Subset generator."
3131
},
3232
"api/Advanced.Algorithms.Combinatorics.Permutation.html": {
3333
"href": "api/Advanced.Algorithms.Combinatorics.Permutation.html",
3434
"title": "Class Permutation | Advanced Algorithms",
35-
"keywords": "Class Permutation Permutation computer. Inheritance Object Permutation Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.Combinatorics Assembly : Advanced.Algorithms.dll Syntax public class Permutation Methods Find<T>(List<T>, Int32, Boolean) Declaration public static List<List<T>> Find<T>(List<T> input, int r, bool withRepetition = false) Parameters Type Name Description List <T> input Int32 r Boolean withRepetition Returns Type Description List < List <T>> Type Parameters Name Description T"
35+
"keywords": "Class Permutation Permutation generator (nPr). Inheritance Object Permutation Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.Combinatorics Assembly : Advanced.Algorithms.dll Syntax public class Permutation Methods Find<T>(List<T>, Int32, Boolean) Declaration public static List<List<T>> Find<T>(List<T> n, int r, bool withRepetition = false) Parameters Type Name Description List <T> n Int32 r Boolean withRepetition Returns Type Description List < List <T>> Type Parameters Name Description T"
3636
},
3737
"api/Advanced.Algorithms.Combinatorics.Subset.html": {
3838
"href": "api/Advanced.Algorithms.Combinatorics.Subset.html",
3939
"title": "Class Subset | Advanced Algorithms",
40-
"keywords": "Class Subset Subset computer. Inheritance Object Subset Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.Combinatorics Assembly : Advanced.Algorithms.dll Syntax public class Subset Methods Find<T>(List<T>) Declaration public static List<List<T>> Find<T>(List<T> input) Parameters Type Name Description List <T> input Returns Type Description List < List <T>> Type Parameters Name Description T"
40+
"keywords": "Class Subset Subset generator. Inheritance Object Subset Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.Combinatorics Assembly : Advanced.Algorithms.dll Syntax public class Subset Methods Find<T>(List<T>) Declaration public static List<List<T>> Find<T>(List<T> input) Parameters Type Name Description List <T> input Returns Type Description List < List <T>> Type Parameters Name Description T"
4141
},
4242
"api/Advanced.Algorithms.Compression.html": {
4343
"href": "api/Advanced.Algorithms.Compression.html",

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /