github.com/primecitizens/pcz/std@v0.2.1/builtin/map/delete.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  package stdmap
     5  
     6  import (
     7  	"unsafe"
     8  
     9  	"github.com/primecitizens/pcz/std/core/abi"
    10  )
    11  
    12  // TODO: implement
    13  
    14  func MapDelete(t *abi.MapType, h *hmap, key unsafe.Pointer)   {}
    15  func MapDeleteFast32(t *abi.MapType, h *hmap, key uint32)     {}
    16  func MapDeleteFast64(t *abi.MapType, h *hmap, key uint64)     {}
    17  func MapDeleteFastString(t *abi.MapType, h *hmap, key string) {}
    18  
    19  func MapClear(t *abi.MapType, h *hmap) {}