![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/lavocat.quebec/private_html/node_modules/effect/dist/esm/ |
import * as internal from "./internal/stm/tPriorityQueue.js"; /** * @since 2.0.0 * @category symbols */ export const TPriorityQueueTypeId = internal.TPriorityQueueTypeId; /** * Constructs a new empty `TPriorityQueue` with the specified `Order`. * * @since 2.0.0 * @category constructors */ export const empty = internal.empty; /** * Creates a new `TPriorityQueue` from an iterable collection of values. * * @since 2.0.0 * @category constructors */ export const fromIterable = internal.fromIterable; /** * Checks whether the queue is empty. * * @since 2.0.0 * @category getters */ export const isEmpty = internal.isEmpty; /** * Checks whether the queue is not empty. * * @since 2.0.0 * @category getters */ export const isNonEmpty = internal.isNonEmpty; /** * Makes a new `TPriorityQueue` that is initialized with specified values. * * @since 2.0.0 * @category constructors */ export const make = internal.make; /** * Offers the specified value to the queue. * * @since 2.0.0 * @category mutations */ export const offer = internal.offer; /** * Offers all of the elements in the specified collection to the queue. * * @since 2.0.0 * @category mutations */ export const offerAll = internal.offerAll; /** * Peeks at the first value in the queue without removing it, retrying until a * value is in the queue. * * @since 2.0.0 * @category getters */ export const peek = internal.peek; /** * Peeks at the first value in the queue without removing it, returning `None` * if there is not a value in the queue. * * @since 2.0.0 * @category getters */ export const peekOption = internal.peekOption; /** * Removes all elements from the queue matching the specified predicate. * * @since 2.0.0 * @category getters */ export const removeIf = internal.removeIf; /** * Retains only elements from the queue matching the specified predicate. * * @since 2.0.0 * @category getters */ export const retainIf = internal.retainIf; /** * Returns the size of the queue. * * @since 2.0.0 * @category getters */ export const size = internal.size; /** * Takes a value from the queue, retrying until a value is in the queue. * * @since 2.0.0 * @category mutations */ export const take = internal.take; /** * Takes all values from the queue. * * @since 2.0.0 * @category mutations */ export const takeAll = internal.takeAll; /** * Takes a value from the queue, returning `None` if there is not a value in * the queue. * * @since 2.0.0 * @category mutations */ export const takeOption = internal.takeOption; /** * Takes up to the specified maximum number of elements from the queue. * * @since 2.0.0 * @category mutations */ export const takeUpTo = internal.takeUpTo; /** * Collects all values into a `Chunk`. * * @since 2.0.0 * @category destructors */ export const toChunk = internal.toChunk; /** * Collects all values into an array. * * @since 2.0.0 * @category destructors */ export const toArray = internal.toArray; //# sourceMappingURL=TPriorityQueue.js.map