class Build::Files::List

def -(list)

@returns [Difference] A difference list excluding the given paths.
@parameter list [List] The list to subtract.
Subtract a list from this list.
def -(list)
	Difference.new(self, list)
end