Does SUBTOTAL have Functions which ignore hidden data?

MS Excel has a series of SUBTOTAL Functions which ignore hidden data. These Functions are numbered similarly to the base Functions, but starting at 100. For example,
Use all data and get the AVERAGE: 1
Ignore hidden data and get the AVERAGE: 101

It does not appear that LibreOffice support these 100 series Functions.

Is that correct?

Is there another way to get the same behavior?

Is this a feature planned for future implementation?

About the SUBTOTAL() function in the inner help, I think is what you are looking for.

SUBTOTAL
Calculates subtotals. If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account.
Syntax
SUBTOTAL(Function; Range)
Function is a number that stands for one of the following functions:
Function index
Function
1     AVERAGE
2     COUNT
3     COUNTA
4     MAX
5     MIN
6     PRODUCT
7     STDEV
8     STDEVP
9     SUM
10    VAR
11    VARP

Range is the range whose cells are included.
Example
You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:
=SUBTOTAL(9;B2:B5)

This is awesome! Thanks.