Symbol._internal._plus in rnn_cell.py

In rnn_cell.py of Module API. When we calculate next cell and hidden state, they use:

next_c = symbol._internal._plus(forget_gate states[1], in_gate in_transform,
name=‘%sstate’%name)

what is symbol._internal._plus here? When we should use this kind of method?