[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 2025-07-26 UTC."],[[["This method checks if a given element is present within a list."],["It returns true if the element is found in the list, otherwise it returns false."],["The method takes the list and the element to search for as arguments."]]],["The core function, `List.contains(element)`, checks for the presence of a specified element within a list. It accepts two arguments: the `list` itself (of type List) and the `element` (of type Object) to search for. The function returns a Boolean value, specifically `true` if the `element` exists in the `list`, and presumably `false` otherwise.\n"]]