GetUnitsOfPlayerAndTypeId

Parameters
whichPlayer player
unitid integer
bug

Leaks handle g: In Jass you must set local variables that hold agents (or any child type) to null at the end of functions to avoid reference counter leaks.

comment
note

Creates a new group object and returns it. The caller must remove it on its own after use.

return type
group
Source code
function GetUnitsOfPlayerAndTypeId takes player whichPlayer, integer unitid returns group
    local group g = CreateGroup()
    set bj_groupEnumTypeId = unitid
    call GroupEnumUnitsOfPlayer(g, whichPlayer, filterGetUnitsOfPlayerAndTypeId)
    return g
endfunction
Source
Blizzard.j
wc3modding.com
GetUnitsOfPlayerAndTypeId