
  [;1m-spec family_intersection(Family1, Family2) -> Family3[0m
  [;1m                             when[0m
  [;1m                                 Family1 :: family(),[0m
  [;1m                                 Family2 :: family(),[0m
  [;1m                                 Family3 :: family().[0m

  If [;;4mFamily1[0m and [;;4mFamily2[0m are families, then [;;4mFamily3[0m is the
  family such that the index set is the intersection of [;;4mFamily1[0m:s
  and [;;4mFamily2[0m:s index sets, and [;;4mFamily3[0m[i] is the intersection
  of [;;4mFamily1[0m[i] and [;;4mFamily2[0m[i].

    1> F1 = sofs:family([{a,[1,2]},{b,[3,4]},{c,[5,6]}]),
    F2 = sofs:family([{b,[4,5]},{c,[7,8]},{d,[9,10]}]),
    F3 = sofs:family_intersection(F1, F2),
    sofs:to_external(F3).
    [{b,[4]},{c,[]}]
