From Jason Turner

[streambuf.pub.get]

Diff to HTML by rtfpessoa

tmp/tmphzq3pagy/{from.md → to.md} RENAMED
@@ -3,11 +3,11 @@
3
  ``` cpp
4
  streamsize in_avail();
5
  ```
6
 
7
  *Returns:* If a read position is available, returns `egptr() - gptr()`.
8
- Otherwise returns `showmanyc()` ([[streambuf.virt.get]]).
9
 
10
  ``` cpp
11
  int_type snextc();
12
  ```
13
 
@@ -18,11 +18,11 @@ int_type snextc();
18
 
19
  ``` cpp
20
  int_type sbumpc();
21
  ```
22
 
23
- *Returns:* If the input sequence read position is not available, returns
24
  `uflow()`. Otherwise, returns `traits::to_int_type(*gptr())` and
25
  increments the next pointer for the input sequence.
26
 
27
  ``` cpp
28
  int_type sgetc();
 
3
  ``` cpp
4
  streamsize in_avail();
5
  ```
6
 
7
  *Returns:* If a read position is available, returns `egptr() - gptr()`.
8
+ Otherwise returns `showmanyc()` [[streambuf.virt.get]].
9
 
10
  ``` cpp
11
  int_type snextc();
12
  ```
13
 
 
18
 
19
  ``` cpp
20
  int_type sbumpc();
21
  ```
22
 
23
+ *Effects:* If the input sequence read position is not available, returns
24
  `uflow()`. Otherwise, returns `traits::to_int_type(*gptr())` and
25
  increments the next pointer for the input sequence.
26
 
27
  ``` cpp
28
  int_type sgetc();