------------------------------------------------------------------------
-- The Agda standard library
--
-- This module is DEPRECATED.
------------------------------------------------------------------------

{-# OPTIONS --cubical-compatible --safe #-}

open import Relation.Binary.Bundles using (Setoid)

module Data.AVL.Value {a } (S : Setoid a ) where

{-# WARNING_ON_IMPORT
"Data.AVL.Value was deprecated in v1.4.
Use Data.Tree.AVL.Value instead."
#-}

open import Data.Tree.AVL.Value S public