Cómo agregar datos a un TrieMap [Long, List [Long]] en Scala

tengo esto:

val vertexIdListPartitions: TrieMap[Long, List[Long]] = TrieMap()

necesito agregarList(3) avertexIdListPartitions(3).

Intento hacer esto con:

vertexIdListPartitions(3)++List(3)

Pero no funciona.

Por favor, ayúdame. Gracias