Skip to content

Commit

Permalink
readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jkulvich committed Jun 6, 2020
1 parent 91c33c9 commit a4063e8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ Or it can be used as a part of big binary serialization library.

# Supported types

- [x] byte
- [x] sbyte
- [x] int16
- [x] uint16
- [x] int32
- [x] uint32
- [ ] int64 // ES2020 only with BigInt
- [ ] uint64 // ES2020 only with BigInt
- [ ] float
- [ ] double
- [x] bool
- [ ] string
- [x] string // Null Terminated String (default)
- [x] short-string // Short String (255 bytes max)
- [ ] fixed-string // String with fixed size. Null Terminated if less than size
- [x] Byte
- [x] SByte
- [x] Int16
- [x] UInt16
- [x] Int32
- [x] UInt32
- [ ] Int64 // ES2020 only with BigInt
- [ ] UInt64 // ES2020 only with BigInt
- [ ] Float
- [ ] Double
- [x] Bool
- [ ] String
- [x] String // Null Terminated String (default)
- [x] ShortString // Short String (255 bytes max)
- [ ] FixedString // String with fixed size. Null Terminated if less than size

# Examples

Expand Down
30 changes: 15 additions & 15 deletions README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@

# Поддерживаемые типы

- [x] byte
- [x] sbyte
- [x] int16
- [x] uint16
- [x] int32
- [x] uint32
- [ ] int64 // Только ES2020 с BigInt
- [ ] uint64 // Только ES2020 с BigInt
- [ ] float
- [ ] double
- [x] bool
- [ ] string
- [x] string // Строка завершающаяся null символом (стандартная)
- [x] short-string // Короткая строка (максимум 255 байт)
- [ ] fixed-string // Строка фиксированного размера. Завершается null, если короче размера
- [x] Byte
- [x] SByte
- [x] Int16
- [x] UInt16
- [x] Int32
- [x] UInt32
- [ ] Int64 // Только ES2020 с BigInt
- [ ] UInt64 // Только ES2020 с BigInt
- [ ] Float
- [ ] Double
- [x] Bool
- [ ] String
- [x] String // Строка завершающаяся null символом (стандартная)
- [x] ShortString // Короткая строка (максимум 255 байт)
- [ ] FixedString // Строка фиксированного размера. Завершается null, если короче размера

# Примеры

Expand Down

0 comments on commit a4063e8

Please sign in to comment.