Write value as a signed integer on 64 bits

Using this format may result in a loss of precision as the length of a Nit Int may be more than 64 bits on some platforms.

Property definitions

binary :: binary $ Writer :: write_int64
	# Write `value` as a signed integer on 64 bits
	#
	# Using this format may result in a loss of precision as the length of a
	# Nit `Int` may be more than 64 bits on some platforms.
	fun write_int64(value: Int)
	do
		for i in [0..8[ do write_byte value.int64_byte_at(i, big_endian)
	end
lib/binary/binary.nit:129,2--136,4