代码搜索:F
找到约 10,000 项符合「F」的源代码
代码结果 10,000
www.eeworm.com/read/332358/3400296
f specpack.f
subroutine specpack(fld,ndpts,JJ,KK,MM,idrstmpl,cpack,lcpack)
!$$$ SUBPROGRAM DOCUMENTATION BLOCK
! . . . .
! SUBPROGRAM: specpac
www.eeworm.com/read/332358/3400303
f addlocal.f
subroutine addlocal(cgrib,lcgrib,csec2,lcsec2,ierr)
!$$$ SUBPROGRAM DOCUMENTATION BLOCK
! . . . .
! SUBPROGRAM: addlocal
! PRG
www.eeworm.com/read/332358/3400304
f getfield.f
subroutine getfield(cgrib,lcgrib,ifldnum,igds,igdstmpl,igdslen,
& ideflist,idefnum,ipdsnum,ipdstmpl,ipdslen,
& coordlist,numcoord,ndpts,idrsnum,id
www.eeworm.com/read/332358/3400306
f gribinfo.f
subroutine gribinfo(cgrib,lcgrib,listsec0,listsec1,
& numlocal,numfields,maxvals,ierr)
!$$$ SUBPROGRAM DOCUMENTATION BLOCK
! . . .
www.eeworm.com/read/332358/3400307
f realloc.f
module re_alloc
interface realloc
module procedure realloc_c1
module procedure realloc_r
module procedure realloc_i
!! subroutine realloc_c1(c,n,m,istat
www.eeworm.com/read/332358/3400308
f gribcreate.f
subroutine gribcreate(cgrib,lcgrib,listsec0,listsec1,ierr)
!$$$ SUBPROGRAM DOCUMENTATION BLOCK
! . . . .
! SUBPROGRAM: gribcreate
www.eeworm.com/read/331045/3418787
java f.java
package library;
import java.sql.ResultSet;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Set;
public class F {
public F()
{
HashMap checkHash=
www.eeworm.com/read/321483/3534615
f_sort
#!perl
#examples poached from perldoc -f sort
# sort lexically
@articles = sort @files;
# same thing, but with explicit sort routine
@articles = sort {$a cmp $b} @files;
# now case-insensitively
@a
www.eeworm.com/read/321483/3534621
f_map
#!perl
# examples shamelessly snatched from perldoc -f map
# translates a list of numbers to the corresponding characters.
@chars = map(chr, @nums);
%hash = map { getkey($_) => $_ } @array;
{
%