Skip to content

Commit 4cbdbe9

Browse files
committed
Doc update
1 parent 79769e4 commit 4cbdbe9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ _"really good"_ _"awesome project"_ _"very solid and very dependable"_ _"my team
7171

7272
[Get started with HealthImaging image sets and image frames using an AWS SDK](https://docs.aws.amazon.com/healthimaging/latest/devguide/example_medical-imaging_Scenario_ImageSetsAndFrames_section.html)
7373

74-
[RubyGems.org](https://rubygems.org/gems/jsoncons/versions/0.1.3?locale=en)   [rjsoncons](https://mtmorgan.github.io/rjsoncons/);[CoppeliaSim](https://manual.coppeliarobotics.com/en/zmqRemoteApiOverview.htm)
74+
[RubyGems.org](https://rubygems.org/gems/jsoncons/versions/0.1.3?locale=en)   [rjsoncons](https://mtmorgan.github.io/rjsoncons/)   [CoppeliaSim](https://manual.coppeliarobotics.com/en/zmqRemoteApiOverview.htm)
7575

7676
## Get jsoncons
7777

doc/ref/corelib/ser_context.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ Line numbers (if available) start at 1. The default implementation returns 0.
1717
Returns the column number to the end of the text being parsed.
1818
Column numbers (if available) start at 1. The default implementation returns 0.
1919

20-
virtual size_t position() const;
20+
virtual size_t begin_position() const; (since 1.3.1)
2121
`position()` is defined for all JSON elements reported to the visitor, and indicates
2222
the position of the character at the beginning of the element, e.g. '"' for a string
2323
or the first digit for a positive number.
2424
Currently only supported for the JSON parser.
2525

26+
virtual size_t position() const;
27+
Currently returns the same value as `begin_position()`. Since 1.3.1, prefer `begin_position()`.
28+
2629
virtual size_t end_position() const;
2730
`end_position()` is defined for all JSON elements reported to the visitor, and indicates
2831
the position after the character at the end of the element, e.g. one past the closing '"' for a string

0 commit comments

Comments
 (0)