Return the set of all elements f that have an edge from f to element.

var pos = new POSet[String]
pos.add_chain(["A", "B", "C", "D"])
assert pos["C"].direct_smallers.has_exactly(["B"])

Property definitions

poset $ POSetElement :: direct_smallers
	# Return the set of all elements `f` that have an edge from `f` to `element`.
	#
	# ~~~~
	# var pos = new POSet[String]
	# pos.add_chain(["A", "B", "C", "D"])
	# assert pos["C"].direct_smallers.has_exactly(["B"])
	# ~~~~
	fun direct_smallers: Collection[E]
	do
		return self.dfroms
	end
lib/poset/poset.nit:579,2--589,4