Equal of std::list

Hi.

Can someone tell me what is an equivalent of std::list in Unreal Engine?
I found only TArray which is an analog of std::vector. TArray based on dynamic array (constant time in element access, but not constant time in element insertion), while I need something like std::list which based on linked list (constant time in element insertion).

Also I found TLinkedList, but it is only single node of list.

Thanks in advance.