#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
for func in ${(P)${1}}; do
if autoload +X -Uz $func &> /dev/null; then
$func
fi
done