Package grscheller.datastructures
Package grscheller.datastructures
Data structures supporting a functional style of programming, yet still endeavor to be Pythonic.
Expand source code
# Copyright 2023 Geoffrey R. Scheller
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Package grscheller.datastructures
Data structures supporting a functional style of programming, yet still
endeavor to be Pythonic.
"""
__version__ = "0.10.9"
__author__ = "Geoffrey R. Scheller"
__copyright__ = "Copyright (c) 2023 Geoffrey R. Scheller"
__license__ = "Appache License 2.0"
from .pstack import *
from .squeue import *
from .dqueue import *
from .fclarray import *
from .ftuple import *
from .fstack import *
from .core.fp import *
from .core.iterlib import *
Sub-modules
grscheller.datastructures.core
-
Package grscheller.datastructures.core …
grscheller.datastructures.dqueue
-
Module grscheller.datastructure.queue - queue based datastructures …
grscheller.datastructures.fclarray
-
Module grscheller.datastructure.fclarray - constant length array …
grscheller.datastructures.fstack
-
Module grscheller.datastructure.fstack - Functional LIFO stack: …
grscheller.datastructures.ftuple
-
Module grscheller.datastructure.ftuple - functional tuples …
grscheller.datastructures.pstack
-
Module grscheller.datastructure.pstack - Stateful LIFO stack: …
grscheller.datastructures.squeue
-
Module grscheller.datastructure.queue - queue based datastructures …