(tc-remove tc argument) -> null
Removes the given argument from the given <tc>, if present.
Example:
>> (define a (make-tc 1 2 3)) :: ((1 2 3) 3) >> (tc-remove! a 2) :: null >> a :: ((1 3) 3)