Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o committed Jun 1, 2024
1 parent 69a13df commit 5f2b603
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,24 @@ Bug Fix. <i><strong>(Reader & Writer)</strong></i>
<td>
<details><summary>📄 <strong><sup><sub>Writer</sub></sup></strong></summary>

### Constructor
- ###### (``byte[]`` buffer) : ``Reader`` <br><sub>Create instance using <i>(Byte[])</i> as internal buffer</sub>
- ###### (``Writer`` writer) : ``Reader`` <br><sub>Create instance using <i>(Writer)</i> as internal buffer</sub>
- ###### (ref ``Writer`` writer) : ``Reader`` <br><sub>Create instance using <i>(Writer)</i> as internal buffer</sub>

### Proprieties

- ###### Success : ``bool`` <br><sub>Return true if deserialized successful.</sub>
- ###### Position : ``int`` <br><sub>Return current read index.</sub>
- ###### Length : ``int`` <br><sub>Return buffer length.</sub>

### Methods

- ###### Seek(``int`` position) : ``void`` <br><sub>Move position (internal buffer index)</sub>
- ###### Read<``T``>() : ``T`` <br><sub>Read content from iternal buffer.</sub>
- ###### Read<``string``>(``Encoding`` encoding) : ``string`` <br><sub>Read custom encoding string.</sub>


</details>
<details><summary>📄 <strong><sup><sub>Reader</sub></sup></strong></summary>

Expand Down

0 comments on commit 5f2b603

Please sign in to comment.