As of RxSwift4, Variable is moved to Deprecated.swift marking the possible deprecation of Variable in future. An alternate proposed to
Variable
Deprecated.swift
Building on Dalton's answer, here is a handy extension:
extension BehaviorRelay where Element: RangeReplaceableCollection { func acceptAppending(_ element: Element.Element) { accept(value + [element]) } }