Skip to content

Commit 4c35c5d

Browse files
author
json-everything-ci
committed
regenerated api docs
1 parent 2df9411 commit 4c35c5d

File tree

2 files changed

+1
-79
lines changed

2 files changed

+1
-79
lines changed

_docs/api/JsonLogic/JsonLogic.md

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,16 @@ A `+` rule.
3838

3939
### Add(Rule a, ReadOnlySpan\<Rule\> more)
4040

41-
Creates a `+` ("add") rule.
4241

4342
#### Declaration
4443

4544
```c#
4645
public static Rule Add(Rule a, ReadOnlySpan<Rule> more)
4746
```
4847

49-
| Parameter | Type | Description |
50-
|---|---|---|
51-
| a | Rule | The first rule. |
52-
| more | ReadOnlySpan\<Rule\> | Subsequent rules. |
53-
5448

5549
#### Returns
5650

57-
A `+` rule.
5851

5952
### All(Rule input, Rule rule)
6053

@@ -98,23 +91,16 @@ An `and` rule.
9891

9992
### And(Rule a, ReadOnlySpan\<Rule\> more)
10093

101-
Creates an `and` rule.
10294

10395
#### Declaration
10496

10597
```c#
10698
public static Rule And(Rule a, ReadOnlySpan<Rule> more)
10799
```
108100

109-
| Parameter | Type | Description |
110-
|---|---|---|
111-
| a | Rule | The first rule. |
112-
| more | ReadOnlySpan\<Rule\> | Subsequent rules. |
113-
114101

115102
#### Returns
116103

117-
An `and` rule.
118104

119105
### Apply(JsonNode rule, JsonNode context)
120106

@@ -240,23 +226,16 @@ A `cat` rule.
240226

241227
### Cat(Rule a, ReadOnlySpan\<Rule\> more)
242228

243-
Creates a `cat` ("concatenation") rule.
244229

245230
#### Declaration
246231

247232
```c#
248233
public static Rule Cat(Rule a, ReadOnlySpan<Rule> more)
249234
```
250235

251-
| Parameter | Type | Description |
252-
|---|---|---|
253-
| a | Rule | The first rule. |
254-
| more | ReadOnlySpan\<Rule\> | Subsequent rules. |
255-
256236

257237
#### Returns
258238

259-
A `cat` rule.
260239

261240
### Divide(Rule a, Rule b)
262241

@@ -497,23 +476,16 @@ A `max` rule.
497476

498477
### Max(Rule a, ReadOnlySpan\<Rule\> more)
499478

500-
Creates a `max` rule.
501479

502480
#### Declaration
503481

504482
```c#
505483
public static Rule Max(Rule a, ReadOnlySpan<Rule> more)
506484
```
507485

508-
| Parameter | Type | Description |
509-
|---|---|---|
510-
| a | Rule | The first rule. |
511-
| more | ReadOnlySpan\<Rule\> | Subsequent rules. |
512-
513486

514487
#### Returns
515488

516-
A `max` rule.
517489

518490
### Merge(params Rule[] items)
519491

@@ -556,23 +528,16 @@ A `min` rule.
556528

557529
### Min(Rule a, ReadOnlySpan\<Rule\> more)
558530

559-
Creates a `min` rule.
560531

561532
#### Declaration
562533

563534
```c#
564535
public static Rule Min(Rule a, ReadOnlySpan<Rule> more)
565536
```
566537

567-
| Parameter | Type | Description |
568-
|---|---|---|
569-
| a | Rule | The first rule. |
570-
| more | ReadOnlySpan\<Rule\> | Subsequent rules. |
571-
572538

573539
#### Returns
574540

575-
A `min` rule.
576541

577542
### Missing(params Rule[] components)
578543

@@ -695,23 +660,16 @@ A `*` rule.
695660

696661
### Multiply(Rule a, ReadOnlySpan\<Rule\> more)
697662

698-
Creates a `*` ("multiply") rule.
699663

700664
#### Declaration
701665

702666
```c#
703667
public static Rule Multiply(Rule a, ReadOnlySpan<Rule> more)
704668
```
705669

706-
| Parameter | Type | Description |
707-
|---|---|---|
708-
| a | Rule | The first rule. |
709-
| more | ReadOnlySpan\<Rule\> | Subsequent rules. |
710-
711670

712671
#### Returns
713672

714-
A `*` rule.
715673

716674
### None(Rule input, Rule rule)
717675

@@ -774,23 +732,16 @@ An `or` rule.
774732

775733
### Or(Rule a, ReadOnlySpan\<Rule\> more)
776734

777-
Creates an `or` rule.
778735

779736
#### Declaration
780737

781738
```c#
782739
public static Rule Or(Rule a, ReadOnlySpan<Rule> more)
783740
```
784741

785-
| Parameter | Type | Description |
786-
|---|---|---|
787-
| a | Rule | The first rule. |
788-
| more | ReadOnlySpan\<Rule\> | Subsequent rules. |
789-
790742

791743
#### Returns
792744

793-
An `or` rule.
794745

795746
### Reduce(Rule input, Rule rule, Rule initial)
796747

@@ -936,23 +887,16 @@ A `-` rule.
936887

937888
### Subtract(Rule a, ReadOnlySpan\<Rule\> more)
938889

939-
Creates a `-` ("subtract") rule.
940890

941891
#### Declaration
942892

943893
```c#
944894
public static Rule Subtract(Rule a, ReadOnlySpan<Rule> more)
945895
```
946896

947-
| Parameter | Type | Description |
948-
|---|---|---|
949-
| a | Rule | The first rule. |
950-
| more | ReadOnlySpan\<Rule\> | Subsequent rules. |
951-
952897

953898
#### Returns
954899

955-
A `-` rule.
956900

957901
### Variable(Rule input)
958902

_docs/api/JsonPointer.Net/JsonPointer.md

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Represents a JSON Pointer IAW RFC 6901.
3434
|---|---|---|
3535
| **Count** | int | Gets the number of segments in the pointer. |
3636
| **Item** | string | Gets a segment value by index. |
37-
| **Item** | JsonPointer | Creates a new pointer with the indicated segments. |
37+
| **Item** | JsonPointer | |
3838

3939
## Methods
4040

@@ -78,22 +78,16 @@ A new pointer.
7878

7979
### Combine(ReadOnlySpan\<PointerSegment\> additionalSegments)
8080

81-
Concatenates additional segments onto the current pointer.
8281

8382
#### Declaration
8483

8584
```c#
8685
public JsonPointer Combine(ReadOnlySpan<PointerSegment> additionalSegments)
8786
```
8887

89-
| Parameter | Type | Description |
90-
|---|---|---|
91-
| additionalSegments | ReadOnlySpan\<PointerSegment\> | The additional segments. |
92-
9388

9489
#### Returns
9590

96-
A new pointer.
9791

9892
### Create(params PointerSegment[] segments)
9993

@@ -120,26 +114,16 @@ This method creates un-encoded pointers only.
120114

121115
### Create(ReadOnlySpan\<PointerSegment\> segments)
122116

123-
Creates a new JSON Pointer from a collection of segments.
124117

125118
#### Declaration
126119

127120
```c#
128121
public static JsonPointer Create(ReadOnlySpan<PointerSegment> segments)
129122
```
130123

131-
| Parameter | Type | Description |
132-
|---|---|---|
133-
| segments | ReadOnlySpan\<PointerSegment\> | A collection of segments. |
134-
135124

136125
#### Returns
137126

138-
The JSON Pointer.
139-
140-
#### Remarks
141-
142-
This method creates un-encoded pointers only.
143127

144128
### Create(Expression\<Func\<T, object\>\> expression, PointerCreationOptions options)
145129

@@ -288,22 +272,16 @@ A new pointer.
288272

289273
### GetSubPointer(Range range)
290274

291-
Creates a new pointer with the indicated segments.
292275

293276
#### Declaration
294277

295278
```c#
296279
public JsonPointer GetSubPointer(Range range)
297280
```
298281

299-
| Parameter | Type | Description |
300-
|---|---|---|
301-
| range | Range | The segment range for the new pointer. |
302-
303282

304283
#### Returns
305284

306-
A new pointer.
307285

308286
### Parse(ReadOnlySpan\<char\> source)
309287

0 commit comments

Comments
 (0)