import { concreteImmutableQueue } from "@tsplus/stdlib/collections/ImmutableQueue/_internal/ImmutableQueueInternal"
/**
* @tsplus getter ImmutableQueue head
*/
export function head(self: ImmutableQueue): Maybe {
concreteImmutableQueue(self)
return self.backingList.head
}