Init a Bytes with capacity cap

Property definitions

core $ Bytes :: with_capacity
	# Init a `Bytes` with capacity `cap`
	init with_capacity(cap: Int) do
		var ns = new CString(cap)
		init(ns, 0, cap)
	end
lib/core/bytes.nit:263,2--267,4