calling for a feature

as I need this feature to complete an addon, and don’t know where to ask for this “simple” feature

this is simply a method for object points to delete any point list in object mode just by calling it
current approaches enter edit mode and delete selected points which is pretty “stupid”

without any security checks:

import bpy, bmesh

def verts_remove_by_index(mesh, index_list):
    bm = bmesh.new()
    bm.from_mesh(mesh)
    bm_verts = bm.verts
    for i in sorted(index_list, reverse=True):
        try:
            bm_verts.remove(bm_verts[i])
        except IndexError:
            continue
    bm.to_mesh(mesh)
    mesh.update()