syncthing/internal/scanner
Jakob Borg 2c8b627008 Integer type policy
Integers are for numbers, enabling arithmetic like subtractions and for
loops without getting shot in the foot. Unsigneds are for bitfields.

- "int" for numbers that will always be laughably smaller than four
  billion, and where we don't care about the serialization format.

- "int32" for numbers that will always be laughably smaller than four
  billion, and will be serialized to four bytes.

- "int64" for numbers that may approach four billion or will be
  serialized to eight bytes.

- "uint32" and "uint64" for bitfields, depending on required number of
  bits and serialization format. Likewise "uint8" and "uint16", although
  rare in this project since they don't exist in XDR.

- "int8", "int16" and plain "uint" are almost never useful.
2015-01-19 10:34:36 -08:00
..
testdata Move top level packages to internal. 2014-09-27 09:42:10 +02:00
blockqueue.go Refactor out protocol and luhn (protocol dependency) packages 2015-01-13 13:22:56 +01:00
blocks.go Integer type policy 2015-01-19 10:34:36 -08:00
blocks_test.go Refactor out protocol and luhn (protocol dependency) packages 2015-01-13 13:22:56 +01:00
debug.go Use more inclusive copyright header 2014-11-17 12:54:42 +01:00
doc.go Use more inclusive copyright header 2014-11-17 12:54:42 +01:00
walk.go Refactor out protocol and luhn (protocol dependency) packages 2015-01-13 13:22:56 +01:00
walk_test.go Refactor out protocol and luhn (protocol dependency) packages 2015-01-13 13:22:56 +01:00