Property definitions

core $ Couple :: defaultinit
# Two objects in a simple structure.
class Couple[F, S]

	# The first element of the couple.
	var first: F is writable

	# The second element of the couple.
	var second: S is writable
end
lib/core/collection/abstract_collection.nit:1322,1--1330,3