How to implement LSTM base meta relearning by Flux?

In LSTM meta learning approach, we have a base leaner and update base learner’s parameters by another learner (single cell LSTM).
The base learner’s parameters is LSTM’s cell state and will input LSTM one by one, the output cell state is a bit of optimized learner’s parameters…

How to feed cell state into LSTM cell and read it’s output? Not LSTM’s default output but cell state(c).
Anyone has related examples?

Thanks.