method RedBlackTree.prototype.insertimport { RedBlackTree } from "https://dotland.deno.dev/std@0.223.0/data_structures/mod.ts"; insert(value: T): booleanAdds the value to the binary search tree if it does not already exist in it. Returns true if successful. Parametersvalue: TReturnsboolean