001// Licensed under the MIT license. See LICENSE file in the project root for full license information.   
002
003package de.bytefish.pgbulkinsert.function;      
004
005@FunctionalInterface    
006public interface ToFloatFunction<T> {   
007
008        /**     
009         * Applies this function to the given argument. 
010         *      
011         * @param value the function argument   
012         * @return the function result  
013         */     
014        float applyAsFloat(T value);    
015}