docstring_tokens
list
code_tokens
list
[ "gets", "node", "which", "initiated", "cache", "operation", "or", "{", "@", "code", "null", "}", "if", "that", "node", "is", "not", "available" ]
[ "return", "evt", "node", ";" ]
[ "gets", "topology", "nodes", "from", "topology", "snapshot", "if", "spi", "implementation", "does", "not", "support", "versioning", "the", "best", "effort", "snapshot", "will", "be", "captured" ]
[ "return", "top", "snapshot", ";" ]
[ "sets", "the", "topology", "snapshot" ]
[ "this", "top", "ver", "=", "top", "ver", ";", "this", "top", "snapshot", "=", "top", "snapshot", ";" ]
[ "gets", "the", "duplex", "mode", "for", "the", "given", "eutran", "operating", "band" ]
[ "if", "(", "band", "=", "=", "invalid", "band", ")", "{", "return", "duplex", "mode", "unknown", ";", "}", "if", "(", "band", ">", "=", "eutran", "band", "band", "68", ")", "{", "return", "duplex", "mode", "unknown", ";", "}", "else", "if", "(", "band", ">", "=", "eutran", "band", "band", "65", ")", "{", "return", "duplex", "mode", "fdd", ";", "}", "else", "if", "(", "band", ">", "=", "eutran", "band", "band", "47", ")", "{", "return", "duplex", "mode", "unknown", ";", "}", "else", "if", "(", "band", ">", "=", "eutran", "band", "band", "33", ")", "{", "return", "duplex", "mode", "tdd", ";", "}", "else", "if", "(", "band", ">", "=", "eutran", "band", "band", "1", ")", "{", "return", "duplex", "mode", "fdd", ";", "}", "return", "duplex", "mode", "unknown", ";" ]
[ "sorts", "on", "the", "key", "first", "then", "on", "the", "value", "nulls", "are", "allowed", "and", "are", "ordered", "first" ]
[ "final", "int", "key", "compare", "=", "bytes", "memcmp", "maybe", "null", "(", "this", "key", ",", "a", "key", ")", ";", "if", "(", "key", "compare", "=", "=", "0", ")", "{", "return", "bytes", "memcmp", "maybe", "null", "(", "this", "value", ",", "a", "value", ")", ";", "}", "return", "key", "compare", ";" ]
[ "compares", "the", "two", "byte", "arrays", "for", "equality", "using", "{" ]
[ "if", "(", "object", "=", "=", "this", ")", "{", "return", "true", ";", "}", "if", "(", "object", "instanceof", "byte", "array", "pair", ")", "{", "final", "byte", "array", "pair", "other", "pair", "=", "(", "byte", "array", "pair", ")", "object", ";", "return", "(", "key", "=", "=", "null", "?", "other", "pair", "get", "key", "(", ")", "=", "=", "null", ":", "bytes", "memcmp", "(", "key", ",", "other", "pair", "key", ")", "=", "=", "0", ")", "&", "&", "(", "value", "=", "=", "null", "?", "other", "pair", "get", "value", "(", ")", "=", "=", "null", ":", "bytes", "memcmp", "(", "value", ",", "other", "pair", "value", ")", "=", "=", "0", ")", ";", "}", "return", "false", ";" ]
[ "creates", "a", "new", "empty", "builder" ]
[ "return", "new", "builder", "(", "false", ")", ";" ]
[ "merges", "any", "non", "-", "null", "configuration", "values", "for", "the", "specified", "overrides" ]
[ "if", "(", "o", "=", "=", "null", ")", "return", "this", ";", "if", "(", "o", "save", "behavior", "!", "=", "null", ")", "save", "behavior", "=", "o", "save", "behavior", ";", "if", "(", "o", "consistent", "reads", "!", "=", "null", ")", "consistent", "reads", "=", "o", "consistent", "reads", ";", "if", "(", "o", "table", "name", "override", "!", "=", "null", ")", "table", "name", "override", "=", "o", "table", "name", "override", ";", "if", "(", "o", "table", "name", "resolver", "!", "=", "null", ")", "table", "name", "resolver", "=", "o", "table", "name", "resolver", ";", "if", "(", "o", "object", "table", "name", "resolver", "!", "=", "null", ")", "object", "table", "name", "resolver", "=", "o", "object", "table", "name", "resolver", ";", "if", "(", "o", "pagination", "loading", "strategy", "!", "=", "null", ")", "pagination", "loading", "strategy", "=", "o", "pagination", "loading", "strategy", ";", "if", "(", "o", "request", "metric", "collector", "!", "=", "null", ")", "request", "metric", "collector", "=", "o", "request", "metric", "collector", ";", "if", "(", "o", "conversion", "schema", "!", "=", "null", ")", "conversion", "schema", "=", "o", "conversion", "schema", ";", "if", "(", "o", "batch", "write", "retry", "strategy", "!", "=", "null", ")", "batch", "write", "retry", "strategy", "=", "o", "batch", "write", "retry", "strategy", ";", "if", "(", "o", "batch", "load", "retry", "strategy", "!", "=", "null", ")", "batch", "load", "retry", "strategy", "=", "o", "batch", "load", "retry", "strategy", ";", "if", "(", "o", "type", "converter", "factory", "!", "=", "null", ")", "type", "converter", "factory", "=", "o", "type", "converter", "factory", ";", "return", "this", ";" ]
[ "returns", "the", "save", "behavior", "for", "this", "configuration" ]
[ "return", "save", "behavior", ";" ]
[ "returns", "the", "consistent", "read", "behavior", "for", "this", "configuration" ]
[ "return", "consistent", "reads", ";" ]
[ "sets", "the", "consistent", "read", "behavior", "currently", "this", "value", "is", "applied", "only", "in", "load", "and", "batch", "load", "operations", "of", "the", "dynamo", "d", "b", "mapper" ]
[ "consistent", "reads", "=", "value", ";" ]
[ "sets", "the", "consistent", "read", "behavior", "currently", "this", "value", "is", "applied", "only", "in", "load", "and", "batch", "load", "operations", "of", "the", "dynamo", "d", "b", "mapper", "@", "param", "value", "the", "new", "consistent", "read", "behavior", "@", "return", "this", "builder" ]
[ "set", "consistent", "reads", "(", "value", ")", ";", "return", "this", ";" ]
[ "returns", "the", "table", "name", "override", "for", "this", "configuration", "this", "value", "will", "override", "the", "table", "name", "specified", "in", "a", "{", "@", "link", "dynamo", "d", "b", "table", "}", "annotation", "either", "by", "replacing", "the", "table", "name", "entirely", "or", "else", "by", "pre", "-", "pending", "a", "string", "to", "each", "table", "name", "this", "is", "useful", "for", "partitioning", "data", "in", "multiple", "tables", "at", "runtime" ]
[ "return", "table", "name", "override", ";" ]
[ "returns", "the", "table", "name", "resolver", "for", "this", "configuration", "this", "value", "will", "be", "used", "to", "determine", "the", "table", "name", "for", "classes", "it", "can", "be", "used", "for", "more", "powerful", "customization", "of", "table", "name", "than", "is", "possible", "using", "only", "{", "@", "link", "table", "name", "override", "}" ]
[ "return", "table", "name", "resolver", ";" ]
[ "returns", "the", "object", "table", "name", "resolver", "for", "this", "configuration", "this", "value", "will", "be", "used", "to", "determine", "the", "table", "name", "for", "objects", "it", "can", "be", "used", "for", "more", "powerful", "customization", "of", "table", "name", "than", "is", "possible", "using", "only", "{", "@", "link", "table", "name", "override", "}" ]
[ "return", "object", "table", "name", "resolver", ";" ]
[ "returns", "the", "pagination", "loading", "strategy", "for", "this", "configuration" ]
[ "return", "pagination", "loading", "strategy", ";" ]
[ "the", "type", "-", "converter", "factory", "for", "scalar", "conversions", "<", "p", ">", "to", "override", "standard", "type", "-", "conversions", "<", "/", "p", ">", "<", "pre", "class", "=", "brush", ":", "java", ">", "dynamo", "d", "b", "mapper", "config", "config", "=", "dynamo", "d", "b", "mapper", "config", "builder", "(", ")", "with", "type", "converter", "factory", "(", "dynamo", "d", "b", "type", "converter", "factory", "standard", "(", ")", "override", "(", ")", "with", "(", "string", "class", "my", "object", "class", "new", "string", "to", "my", "object", "converter", "(", ")", ")", "build", "(", ")", ")", "build", "(", ")", ";", "<", "/", "pre", ">", "<", "p", ">", "then", "on", "the", "property", "specify", "the", "attribute", "binding", "<", "/", "p", ">", "<", "pre", "class", "=", "brush", ":", "java", ">", "&", "#", "064", ";", "dynamo", "d", "b", "typed", "(", "dynamo", "d", "b", "attribute", "type", "s", ")", "public", "my", "object", "get", "my", "object", "(", ")", "<", "/", "pre", ">" ]
[ "set", "type", "converter", "factory", "(", "value", ")", ";", "return", "this", ";" ]
[ "builds", "a", "new", "{", "@", "code", "dynamo", "d", "b", "mapper", "config", "}", "object" ]
[ "return", "new", "dynamo", "d", "b", "mapper", "config", "(", "this", ")", ";" ]
[ "returns", "a", "new", "{" ]
[ "return", "new", "table", "name", "override", "(", "null", ",", "table", "name", "prefix", ")", ";" ]
[ "returns", "a", "new", "{" ]
[ "return", "new", "table", "name", "override", "(", "table", "name", "replacement", ",", "null", ")", ";" ]
[ "returns", "the", "table", "name", "to", "use", "for", "all", "requests", "exclusive", "with", "{", "@", "link", "table", "name", "override", "#", "get", "table", "name", "prefix", "(", ")", "}" ]
[ "return", "table", "name", "override", ";" ]
[ "/", "*", "(", "non", "-", "javadoc", ")" ]
[ "return", "false", ";" ]
[ "/", "*", "(", "non", "-", "javadoc", ")" ]
[ "return", "-", "1", ";" ]
[ "merges", "these", "configuration", "values", "with", "the", "specified", "overrides", ";", "may", "simply", "return", "this", "instance", "if", "overrides", "are", "the", "same", "or", "null" ]
[ "return", "overrides", "=", "=", "null", "|", "|", "this", "=", "=", "overrides", "?", "this", ":", "builder", "(", ")", "merge", "(", "this", ")", "merge", "(", "overrides", ")", "build", "(", ")", ";" ]
[ "not", "supported", "use", "{", "@", "link", "immutable", "sorted", "multiset", "#", "to", "immutable", "sorted", "multiset", "}", "instead", "this", "method", "exists", "only", "to", "hide", "{", "@", "link", "immutable", "multiset", "#", "to", "immutable", "multiset", "}", "from", "consumers", "of", "{", "@", "code", "immutable", "sorted", "multiset", "}" ]
[ "throw", "new", "unsupported", "operation", "exception", "(", ")", ";" ]
[ "not", "supported", "use", "{", "@", "link", "immutable", "sorted", "multiset", "#", "to", "immutable", "sorted", "multiset", "}", "instead", "this", "method", "exists", "only", "to", "hide", "{", "@", "link", "immutable", "multiset", "#", "to", "immutable", "multiset", "}", "from", "consumers", "of", "{", "@", "code", "immutable", "sorted", "multiset", "}" ]
[ "throw", "new", "unsupported", "operation", "exception", "(", ")", ";" ]
[ "returns", "a", "string", "describing", "the", "macro", "that", "created", "this", "rule", "or", "an", "empty", "string" ]
[ "protected", "abstract", "string", "get", "macro", "message", "appendix", "(", "string", "attr", "name", ")", ";" ]
[ "temporarily", "enable", "litho", "animations", "until", "either", "{" ]
[ "components", "configuration", "force", "enable", "transitions", "for", "instrumentation", "tests", "=", "true", ";" ]
[ "disable", "litho", "animations", "this", "might", "be", "useful", "for", "cases", "where", "within", "a", "test", "method", "you", "can", "enable", "animations", "for", "certain", "actions", "while", "disabling", "it", "for", "others", "all", "within", "single", "test", "method", "note", "that", "there", "is", "no", "need", "to", "disable", "on", "tear", "down", "of", "the", "test", "class", "as", "we", "make", "sure", "to", "turn", "animation", "back", "to", "its", "original", "value", "when", "every", "test", "method", "finishes" ]
[ "components", "configuration", "force", "enable", "transitions", "for", "instrumentation", "tests", "=", "false", ";" ]
[ "create", "a", "new", "{", "@", "link", "ack", "error", "code", "}", "from", "the", "string", "value" ]
[ "return", "value", "=", "=", "null", "?", "null", ":", "new", "ack", "error", "code", "(", "values", "from", "value", "(", "value", ")", ",", "value", ")", ";" ]
[ "supports", "boolean" ]
[ "return", "sms", "code", "authentication", "token", "class", "is", "assignable", "from", "(", "authentication", ")", ";" ]
[ "gets", "user", "details", "service" ]
[ "return", "user", "details", "service", ";" ]
[ "loads", "the", "localized", "label", "to", "display", "to", "the", "user", "in", "the", "app", "widget", "picker" ]
[ "char", "sequence", "label", "=", "provider", "info", "load", "label", "(", "package", "manager", ")", ";", "if", "(", "label", "!", "=", "null", ")", "{", "return", "label", "to", "string", "(", ")", "trim", "(", ")", ";", "}", "return", "null", ";" ]
[ "loads", "the", "icon", "to", "display", "for", "this", "app", "widget", "in", "the", "app", "widget", "picker", "if", "not", "supplied", "in", "the", "xml", "the", "application", "icon", "will", "be", "used", "a", "client", "can", "optionally", "provide", "a", "desired", "density", "such", "as", "{", "@", "link", "android", "util", "display", "metrics", "#", "density", "low", "}", "{", "@", "link", "android", "util", "display", "metrics", "#", "density", "medium", "}", "etc", "if", "no", "density", "is", "provided", "the", "density", "of", "the", "current", "display", "will", "be", "used", "<", "p", ">", "the", "loaded", "icon", "corresponds", "to", "the", "<", "code", ">", "android", ":", "icon", "<", "/", "code", ">", "attribute", "in", "the", "<", "code", ">", "&", "lt", ";", "receiver", "&", "gt", ";", "<", "/", "code", ">", "element", "in", "the", "android", "manifest", "xml", "file", "<", "/", "p", ">" ]
[ "return", "load", "drawable", "(", "context", ",", "density", ",", "provider", "info", "get", "icon", "resource", "(", ")", ",", "true", ")", ";" ]
[ "loads", "a", "preview", "of", "what", "the", "app", "widget", "will", "look", "like", "after", "it", "s", "configured", "a", "client", "can", "optionally", "provide", "a", "desired", "density", "such", "as", "{", "@", "link", "android", "util", "display", "metrics", "#", "density", "low", "}", "{", "@", "link", "android", "util", "display", "metrics", "#", "density", "medium", "}", "etc", "if", "no", "density", "is", "provided", "the", "density", "of", "the", "current", "display", "will", "be", "used", "<", "p", ">", "the", "loaded", "image", "corresponds", "to", "the", "<", "code", ">", "android", ":", "preview", "image", "<", "/", "code", ">", "attribute", "in", "the", "<", "code", ">", "&", "lt", ";", "receiver", "&", "gt", ";", "<", "/", "code", ">", "element", "in", "the", "android", "manifest", "xml", "file", "<", "/", "p", ">" ]
[ "return", "load", "drawable", "(", "context", ",", "density", ",", "preview", "image", ",", "false", ")", ";" ]
[ "gets", "the", "user", "profile", "in", "which", "the", "provider", "resides" ]
[ "return", "new", "user", "handle", "(", "user", "handle", "get", "user", "id", "(", "provider", "info", "application", "info", "uid", ")", ")", ";" ]
[ "{" ]
[ "if", "(", "commands", "!", "=", "null", ")", "{", "for", "(", "command", "c", ":", "commands", ")", "{", "register", "(", "fallback", "prefix", ",", "c", ")", ";", "}", "}" ]
[ "{" ]
[ "return", "register", "(", "command", "get", "name", "(", ")", ",", "fallback", "prefix", ",", "command", ")", ";" ]
[ "tests", "getting", "and", "setting", "fields" ]
[ "random", "random", "=", "new", "random", "(", ")", ";", "boolean", "is", "primary", "=", "random", "next", "boolean", "(", ")", ";", "long", "sequence", "number", "=", "random", "next", "long", "(", ")", ";", "journal", "writer", "options", "options", "=", "journal", "writer", "options", "defaults", "(", ")", ";", "options", "set", "primary", "(", "is", "primary", ")", ";", "assert", "assert", "equals", "(", "is", "primary", ",", "options", "is", "primary", "(", ")", ")", ";", "options", "set", "next", "sequence", "number", "(", "sequence", "number", ")", ";", "assert", "assert", "equals", "(", "sequence", "number", ",", "options", "get", "next", "sequence", "number", "(", ")", ")", ";" ]
[ "returns", "true", "if", "field", "corresponding", "to", "field", "i", "d", "is", "set", "(", "has", "been", "assigned", "a", "value", ")", "and", "false", "otherwise" ]
[ "if", "(", "field", "=", "=", "null", ")", "{", "throw", "new", "java", "lang", "illegal", "argument", "exception", "(", ")", ";", "}", "switch", "(", "field", ")", "{", "case", "thread", "dumps", ":", "return", "is", "set", "thread", "dumps", "(", ")", ";", "}", "throw", "new", "java", "lang", "illegal", "state", "exception", "(", ")", ";" ]
[ "maps", "the", "given", "{" ]
[ "if", "(", "can", "see", "details", "(", "security", "context", ",", "this", "show", "details", ")", ")", "{", "health", "health", "details", "=", "health", "get", "(", ")", ";", "if", "(", "health", "details", "!", "=", "null", ")", "{", "return", "create", "web", "endpoint", "response", "(", "health", "details", ")", ";", "}", "}", "return", "new", "web", "endpoint", "response", "<", ">", "(", "web", "endpoint", "response", "status", "not", "found", ")", ";" ]
[ "maps", "the", "given", "{" ]
[ "return", "map", "(", "health", ",", "security", "context", ",", "this", "show", "details", ")", ";" ]
[ "maps", "the", "given", "{" ]
[ "if", "(", "show", "details", "=", "=", "show", "details", "never", "|", "|", "(", "show", "details", "=", "=", "show", "details", "when", "authorized", "&", "&", "(", "security", "context", "get", "principal", "(", ")", "=", "=", "null", "|", "|", "!", "is", "user", "in", "role", "(", "security", "context", ")", ")", ")", ")", "{", "health", "=", "health", "status", "(", "health", "get", "status", "(", ")", ")", "build", "(", ")", ";", "}", "return", "create", "web", "endpoint", "response", "(", "health", ")", ";" ]
[ "{" ]
[ "return", "delegate", "skip", "store", "(", ")", ";" ]
[ "{" ]
[ "return", "delegate", "set", "skip", "store", "(", "skip", "store", ")", ";" ]
[ "{" ]
[ "return", "delegate", "contains", "key", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "contains", "key", "async", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "contains", "key", "(", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "contains", "keys", "async", "(", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "local", "peek", "(", "key", "transformer", "transform", "(", "key", ")", ",", "peek", "modes", ",", "plc", ")", ";" ]
[ "{" ]
[ "return", "delegate", "local", "entries", "(", "peek", "modes", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "entry", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "async", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "entry", "async", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "all", "(", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "entries", "(", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "all", "async", "(", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "entries", "async", "(", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "and", "put", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "and", "put", "async", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "put", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "put", "async", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "and", "put", "if", "absent", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "and", "put", "if", "absent", "async", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "put", "if", "absent", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "put", "if", "absent", "async", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "and", "replace", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "and", "replace", "async", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "replace", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "replace", "async", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "replace", "(", "key", "transformer", "transform", "(", "key", ")", ",", "old", "val", ",", "new", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "replace", "async", "(", "key", "transformer", "transform", "(", "key", ")", ",", "old", "val", ",", "new", "val", ")", ";" ]
[ "{" ]
[ "delegate", "put", "all", "(", "transform", "(", "m", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "put", "all", "async", "(", "transform", "(", "m", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "key", "set", "(", ")", ";" ]
[ "{" ]
[ "return", "delegate", "entry", "set", "(", ")", ";" ]
[ "{" ]
[ "return", "delegate", "tx", "start", "(", "concurrency", ",", "isolation", ")", ";" ]
[ "{" ]
[ "return", "delegate", "tx", "start", "ex", "(", "concurrency", ",", "isolation", ")", ";" ]
[ "{" ]
[ "return", "delegate", "tx", "start", "(", "concurrency", ",", "isolation", ",", "timeout", ",", "tx", "size", ")", ";" ]
[ "{" ]
[ "return", "delegate", "tx", "(", ")", ";" ]
[ "{" ]
[ "return", "delegate", "evict", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "delegate", "evict", "all", "(", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "delegate", "clear", "locally", "(", "srv", ",", "near", ",", "readers", ")", ";" ]
[ "{" ]
[ "return", "delegate", "clear", "locally", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "delegate", "clear", "locally", "all", "(", "(", "set", "<", "?", ">", ")", "transform", "(", "keys", ")", ",", "srv", ",", "near", ",", "readers", ")", ";" ]
[ "{" ]
[ "delegate", "clear", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "delegate", "clear", "all", "(", "(", "set", "<", "?", ">", ")", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "delegate", "clear", "(", ")", ";" ]
[ "{" ]
[ "return", "delegate", "clear", "async", "(", ")", ";" ]
[ "{" ]
[ "return", "delegate", "clear", "async", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "clear", "all", "async", "(", "(", "set", "<", "?", ">", ")", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "and", "remove", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "get", "and", "remove", "async", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "remove", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "remove", "async", "(", "key", "transformer", "transform", "(", "key", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "remove", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "return", "delegate", "remove", "async", "(", "key", "transformer", "transform", "(", "key", ")", ",", "val", ")", ";" ]
[ "{" ]
[ "delegate", "remove", "all", "(", "transform", "(", "keys", ")", ")", ";" ]
[ "{" ]
[ "return", "delegate", "remove", "all", "async", "(", "transform", "(", "keys", ")", ")", ";" ]