convertToExchangeFormatApplicableFunc<ReturnType, FirstVarType, SettingType> function

ReturnType Function<FineSettingType extends SettingType>(FirstVarType i, FineSettingType sharedSettings) convertToExchangeFormatApplicableFunc<ReturnType, FirstVarType, SettingType>(
  1. ReturnType func(
    1. FirstVarType firstVar
    )
)

Implementation

ReturnType Function<FineSettingType extends SettingType>(FirstVarType i, FineSettingType sharedSettings) convertToExchangeFormatApplicableFunc<ReturnType, FirstVarType, SettingType>(ReturnType Function(FirstVarType firstVar) func){
  return <FineSettingType extends SettingType>(
    FirstVarType i,
    FineSettingType sharedSettings
  ) => func(i);
}