Types/Language.Functions/get_All.ps1

<#
.SYNOPSIS
    Gets all Language Functions
.DESCRIPTION
    Gets all functions explicitly related to a language defined in PipeScript.
#>

,@(foreach ($psProperty in $this.PSObject.properties) {
    if ($psProperty -isnot [psnoteproperty]) { continue  }    
    if ($psProperty.Value -isnot [Management.Automation.CommandInfo]) { continue }
    $psProperty.Value
})